6d40002093
This adds a config parser, chaining, and a tonne of other stuff. Still need to fix up build system for the lex and yacc stuff.
34 lines
1.5 KiB
Makefile
34 lines
1.5 KiB
Makefile
# util/epist/Makefile.am for Blackbox - an X11 Window manager
|
|
|
|
CPPFLAGS= @CPPFLAGS@ @DEBUG@
|
|
|
|
EXTRA_PROGRAMS = epist
|
|
|
|
epist_SOURCES = epist.cc window.cc screen.cc main.cc actions.cc yacc_parser.cc parser.cc keytree.cc lex.yy.c
|
|
epist_LDADD = ../../src/XAtom.o ../../src/BaseDisplay.o \
|
|
../../src/Util.o ../../src/i18n.o \
|
|
../../src/GCCache.o ../../src/Color.o ../../src/Texture.o \
|
|
../../src/Timer.o ../../src/Image.o ../../src/ImageControl.o
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
distclean-local:
|
|
rm -f *\~ .\#*
|
|
|
|
# local dependencies
|
|
|
|
epist.o: epist.cc epist.hh ../../src/BaseDisplay.hh ../../src/Timer.hh \
|
|
../../src/Util.hh screen.hh window.hh ../../src/XAtom.hh
|
|
main.o: main.cc epist.hh ../../src/BaseDisplay.hh ../../src/Timer.hh \
|
|
../../src/Util.hh ../../src/i18n.hh ../../nls/blackbox-nls.hh
|
|
screen.o: screen.cc ../../src/XAtom.hh screen.hh window.hh epist.hh \
|
|
../../src/BaseDisplay.hh ../../src/Timer.hh ../../src/Util.hh
|
|
window.o: window.cc window.hh epist.hh ../../src/BaseDisplay.hh \
|
|
../../src/Timer.hh ../../src/Util.hh ../../src/XAtom.hh
|
|
yacc_parser.o: yacc_parser.cc yacc_parser.hh epist.hh ../../src/BaseDisplay.hh \
|
|
../../src/Timer.hh ../../src/Util.hh ../../src/XAtom.hh
|
|
keytree.o: keytree.cc keytree.hh epist.hh ../../src/BaseDisplay.hh \
|
|
../../src/Timer.hh ../../src/Util.hh ../../src/XAtom.hh
|
|
parser.o: parser.cc parser.hh epist.hh ../../src/BaseDisplay.hh \
|
|
../../src/Timer.hh ../../src/Util.hh ../../src/XAtom.hh
|
|
lex.yy.o: lex.yy.c
|