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