Makefile.am revision 05b261ec
1INCLUDES = \ 2 @KDRIVE_INCS@ \ 3 @KDRIVE_CFLAGS@ \ 4 -I$(srcdir)/../../../exa 5 6noinst_LIBRARIES = libxephyr.a libxephyr-hostx.a 7 8bin_PROGRAMS = Xephyr 9 10libxephyr_a_SOURCES = \ 11 ephyr.c \ 12 ephyr_draw.c \ 13 os.c \ 14 hostx.h \ 15 ephyr.h 16 17libxephyr_hostx_a_SOURCES = \ 18 hostx.c \ 19 hostx.h 20 21libxephyr_hostx_a_INCLUDES = @XEPHYR_INCS@ 22 23Xephyr_SOURCES = \ 24 ephyrinit.c 25 26Xephyr_LDADD = \ 27 libxephyr.a \ 28 libxephyr-hostx.a \ 29 ../../../exa/libexa.la \ 30 @KDRIVE_LIBS@ \ 31 @XSERVER_LIBS@ \ 32 @XEPHYR_LIBS@ 33 34Xephyr_DEPENDENCIES = \ 35 libxephyr.a \ 36 libxephyr-hostx.a \ 37 @KDRIVE_LOCAL_LIBS@ 38 39relink: 40 rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS) 41