diff options
Diffstat (limited to 'xorg-server/hw/kdrive/sdl/Makefile.am')
-rw-r--r-- | xorg-server/hw/kdrive/sdl/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/xorg-server/hw/kdrive/sdl/Makefile.am b/xorg-server/hw/kdrive/sdl/Makefile.am new file mode 100644 index 000000000..0973cb4ea --- /dev/null +++ b/xorg-server/hw/kdrive/sdl/Makefile.am @@ -0,0 +1,19 @@ +INCLUDES = \ + @KDRIVE_PURE_INCS@ \ + @KDRIVE_CFLAGS@ \ + @XSDL_INCS@ + +bin_PROGRAMS = Xsdl + +Xsdl_SOURCES = sdl.c + +Xsdl_LDADD = \ + @KDRIVE_LIBS@ \ + @XSDL_LIBS@ + +Xsdl_DEPENDENCIES = @KDRIVE_LOCAL_LIBS@ + +Xsdl_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG) + +relink: + rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS) |