diff options
Diffstat (limited to 'hw/kdrive/sdl/Makefile.am')
-rw-r--r-- | hw/kdrive/sdl/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/hw/kdrive/sdl/Makefile.am b/hw/kdrive/sdl/Makefile.am new file mode 100644 index 000000000..c8252d7c2 --- /dev/null +++ b/hw/kdrive/sdl/Makefile.am @@ -0,0 +1,19 @@ +INCLUDES = \ + @KDRIVE_PURE_INCS@ \ + @XSERVER_CFLAGS@ \ + @XSDL_INCS@ + +bin_PROGRAMS = Xsdl + +if TSLIB +TSLIB_FLAG = -lts +endif + +Xsdl_SOURCES = sdl.c + +Xsdl_LDADD = @KDRIVE_PURE_LIBS@ \ + @XSERVER_LIBS@ \ + $(TSLIB_FLAG) \ + @XSDL_LIBS@ + +Xsdl_DEPENDENCIES = @KDRIVE_LIBS@ |