diff options
author | root <root@zombrain.(none)> | 2011-07-25 08:54:41 (GMT) |
---|---|---|
committer | root <root@zombrain.(none)> | 2011-07-25 08:54:41 (GMT) |
commit | ab4fcaad149d4bdccefa8f693c2a8e044b40dd4c (patch) | |
tree | c95c280caabc70e7aedbde723e38820047357be7 /hw/kdrive/fake/Makefile.am |
initial state (xorg-server 1.10.2)
Diffstat (limited to 'hw/kdrive/fake/Makefile.am')
-rw-r--r-- | hw/kdrive/fake/Makefile.am | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/hw/kdrive/fake/Makefile.am b/hw/kdrive/fake/Makefile.am new file mode 100644 index 0000000..6d3ed05 --- /dev/null +++ b/hw/kdrive/fake/Makefile.am @@ -0,0 +1,30 @@ +INCLUDES = \ + @KDRIVE_INCS@ \ + @KDRIVE_CFLAGS@ + +noinst_LTLIBRARIES = libfake.la + +bin_PROGRAMS = Xfake + +libfake_la_SOURCES = \ + fake.c \ + kbd.c \ + os.c \ + mouse.c \ + fake.h + +Xfake_SOURCES = \ + fakeinit.c + +Xfake_LDADD = \ + libfake.la \ + @KDRIVE_LIBS@ + +Xfake_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG) + +Xfake_DEPENDENCIES = \ + libfake.la \ + @KDRIVE_LOCAL_LIBS@ + +relink: + $(AM_V_at)rm -f $(bin_PROGRAMS) && $(MAKE) $(bin_PROGRAMS) |