summaryrefslogtreecommitdiff
path: root/util/epist/Makefile.am
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-11-01 02:27:17 +0000
committerDana Jansens <danakj@orodu.net>2002-11-01 02:27:17 +0000
commiteb19a6b69e89c6adae1b99705b0a26edc344c87a (patch)
treea1d98fe35fdf9117692d6b383122ef199fff1b38 /util/epist/Makefile.am
parent54c96668d958c0604f697958db6a7c5268d7b4a5 (diff)
make epist compile with the new code base
Diffstat (limited to 'util/epist/Makefile.am')
-rw-r--r--util/epist/Makefile.am58
1 files changed, 27 insertions, 31 deletions
diff --git a/util/epist/Makefile.am b/util/epist/Makefile.am
index 20e3ceee..3588cb30 100644
--- a/util/epist/Makefile.am
+++ b/util/epist/Makefile.am
@@ -4,19 +4,19 @@ DEFAULT_RC=$(pkgdatadir)/epistrc
CLEANFILES = epist.1 epistrc.5
-CPPFLAGS= @CPPFLAGS@ @DEBUG@ -DDEFAULTRC=\"$(DEFAULT_RC)\"
+CXXFLAGS= @CXXFLAGS@ -DDEFAULTRC=\"$(DEFAULT_RC)\"
#EXTRA_PROGRAMS = epist
bin_PROGRAMS = epist
man_MANS = epist.1 epistrc.5
-epist_SOURCES = epist.cc window.cc screen.cc main.cc actions.cc yacc_parser.cc parser.cc keytree.cc lex.yy.c config.cc
-epist_LDADD = ../../src/XAtom.o ../../src/BaseDisplay.o \
- ../../src/Util.o ../../src/i18n.o ../../src/Timer.o \
- ../../src/GCCache.o ../../src/Color.o
-# ../../src/Texture.o \
-# ../../src/Image.o ../../src/ImageControl.o
+epist_SOURCES = epist.cc window.cc screen.cc main.cc actions.cc \
+ yacc_parser.cc parser.cc keytree.cc lex.yy.c config.cc
+
+epist_LDADD = ../../src/xatom.o ../../src/basedisplay.o \
+ ../../src/util.o ../../src/timer.o \
+ ../../src/gccache.o ../../src/color.o
MAINTAINERCLEANFILES = Makefile.in
@@ -39,28 +39,24 @@ uninstall-am:
rm -f $(DESTDIR)$(pkgdatadir)/epistrc
# local dependencies
-
actions.o: actions.cc actions.hh
-epist.o: epist.cc actions.hh epist.hh window.hh ../../src/Util.hh \
- keytree.hh screen.hh ../../src/BaseDisplay.hh ../../src/Timer.hh \
- parser.hh ../../src/XAtom.hh
-keytree.o: keytree.cc keytree.hh actions.hh screen.hh window.hh \
- ../../src/Util.hh
-main.o: main.cc epist.hh actions.hh window.hh ../../src/Util.hh \
- keytree.hh screen.hh ../../src/BaseDisplay.hh ../../src/Timer.hh \
- ../../src/i18n.hh ../../nls/blackbox-nls.hh
-parser.o: parser.cc parser.hh actions.hh keytree.hh screen.hh window.hh \
- ../../src/Util.hh
-screen.o: screen.cc ../../src/BaseDisplay.hh ../../src/Timer.hh \
- ../../src/Util.hh ../../src/XAtom.hh screen.hh window.hh epist.hh \
- actions.hh keytree.hh
-window.o: window.cc epist.hh actions.hh window.hh ../../src/Util.hh \
- keytree.hh screen.hh ../../src/BaseDisplay.hh ../../src/Timer.hh \
- ../../src/XAtom.hh
-config.o: config.cc config.hh ../../src/Util.hh \
- keytree.hh screen.hh ../../src/BaseDisplay.hh ../../src/Timer.hh \
- ../../src/XAtom.hh
-yacc_parser.cc: epist.y
- bison -d epist.y -o yacc_parser.cc
-lex.yy.c: epist.l
- lex epist.l
+config.o: config.cc config.hh
+epist.o: epist.cc actions.hh epist.hh window.hh ../../src/util.hh \
+ keytree.hh ../../src/timer.hh screen.hh config.hh \
+ ../../src/basedisplay.hh parser.hh ../../src/xatom.hh
+keytree.o: keytree.cc keytree.hh ../../src/timer.hh actions.hh \
+ screen.hh window.hh ../../src/util.hh config.hh epist.hh \
+ ../../src/basedisplay.hh
+main.o: main.cc ../../version.h epist.hh actions.hh window.hh \
+ ../../src/util.hh keytree.hh ../../src/timer.hh screen.hh config.hh \
+ ../../src/basedisplay.hh
+parser.o: parser.cc parser.hh actions.hh keytree.hh ../../src/timer.hh \
+ screen.hh window.hh ../../src/util.hh config.hh
+screen.o: screen.cc ../../src/basedisplay.hh ../../src/timer.hh \
+ ../../src/util.hh ../../src/xatom.hh screen.hh window.hh config.hh \
+ epist.hh actions.hh keytree.hh
+window.o: window.cc epist.hh actions.hh window.hh ../../src/util.hh \
+ keytree.hh ../../src/timer.hh screen.hh config.hh \
+ ../../src/basedisplay.hh ../../src/xatom.hh
+yacc_parser.o: yacc_parser.cc parser.hh actions.hh keytree.hh \
+ ../../src/timer.hh screen.hh window.hh ../../src/util.hh config.hh