]> Dogcows Code - chaz/openbox/blob - util/epist/Makefile.am
make epist compile with the new code base
[chaz/openbox] / util / epist / Makefile.am
1 # util/epist/Makefile.am for Blackbox - an X11 Window manager
2
3 DEFAULT_RC=$(pkgdatadir)/epistrc
4
5 CLEANFILES = epist.1 epistrc.5
6
7 CXXFLAGS= @CXXFLAGS@ -DDEFAULTRC=\"$(DEFAULT_RC)\"
8
9 #EXTRA_PROGRAMS = epist
10 bin_PROGRAMS = epist
11
12 man_MANS = epist.1 epistrc.5
13
14 epist_SOURCES = epist.cc window.cc screen.cc main.cc actions.cc \
15 yacc_parser.cc parser.cc keytree.cc lex.yy.c config.cc
16
17 epist_LDADD = ../../src/xatom.o ../../src/basedisplay.o \
18 ../../src/util.o ../../src/timer.o \
19 ../../src/gccache.o ../../src/color.o
20
21 MAINTAINERCLEANFILES = Makefile.in
22
23 distclean-local:
24 rm -f *\~ .\#*
25
26 epist.1: epist.1.in
27 @regex_cmd@ -e "s,@pkgdatadir@,$(pkgdatadir)," \
28 epist.1.in > epist.1
29
30 epistrc.5: epistrc.5.in
31 @regex_cmd@ -e "s,@pkgdatadir@,$(pkgdatadir)," \
32 epistrc.5.in > epistrc.5
33
34 install-data-local: epistrc
35 test -f $(DESTDIR)$(pkgdatadir)/epistrc || \
36 $(INSTALL_DATA) epistrc $(DESTDIR)$(pkgdatadir)
37
38 uninstall-am:
39 rm -f $(DESTDIR)$(pkgdatadir)/epistrc
40
41 # local dependencies
42 actions.o: actions.cc actions.hh
43 config.o: config.cc config.hh
44 epist.o: epist.cc actions.hh epist.hh window.hh ../../src/util.hh \
45 keytree.hh ../../src/timer.hh screen.hh config.hh \
46 ../../src/basedisplay.hh parser.hh ../../src/xatom.hh
47 keytree.o: keytree.cc keytree.hh ../../src/timer.hh actions.hh \
48 screen.hh window.hh ../../src/util.hh config.hh epist.hh \
49 ../../src/basedisplay.hh
50 main.o: main.cc ../../version.h epist.hh actions.hh window.hh \
51 ../../src/util.hh keytree.hh ../../src/timer.hh screen.hh config.hh \
52 ../../src/basedisplay.hh
53 parser.o: parser.cc parser.hh actions.hh keytree.hh ../../src/timer.hh \
54 screen.hh window.hh ../../src/util.hh config.hh
55 screen.o: screen.cc ../../src/basedisplay.hh ../../src/timer.hh \
56 ../../src/util.hh ../../src/xatom.hh screen.hh window.hh config.hh \
57 epist.hh actions.hh keytree.hh
58 window.o: window.cc epist.hh actions.hh window.hh ../../src/util.hh \
59 keytree.hh ../../src/timer.hh screen.hh config.hh \
60 ../../src/basedisplay.hh ../../src/xatom.hh
61 yacc_parser.o: yacc_parser.cc parser.hh actions.hh keytree.hh \
62 ../../src/timer.hh screen.hh window.hh ../../src/util.hh config.hh
This page took 0.036693 seconds and 4 git commands to generate.