fluxbox/util/fbrun/Makemodule.am
Sami Kerola 7541054b29 build-sys: move to non-recursive build
This rather large change will attempts to make 'make' to work better.
See excellent paper 'Recursive Make Considered Harmful' by Peter Miller
for further explanation why several make files is worse than one for
whole project.

Note.  The tests are build with 'make check' rather than defining TEST.

Reference: http://miller.emu.id.au/pmiller/books/rmch/
Reference: http://karelzak.blogspot.co.uk/2013/02/non-recursive-automake.html
2013-05-26 10:38:11 +01:00

22 lines
354 B
Text

bin_PROGRAMS += fbrun
fbrun_CPPFLAGS = \
$(AM_CPPFLAGS) \
-I$(fbtk_incdir)
fbrun_SOURCES = \
util/fbrun/FbRun.hh \
util/fbrun/FbRun.cc \
util/fbrun/main.cc \
util/fbrun/fbrun.xpm
fbrun_LDADD = libFbTk.a
fbrun_LDFLAGS = \
$(FONTCONFIG_LIBS) \
$(FRIBIDI_LIBS) \
$(X11_LIBS) \
$(XFT_LIBS) \
$(XINERAMA_LIBS) \
$(XPM_LIBS) \
$(XRENDER_LIBS)