X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2FMakefile.am;h=ac2120cf85d292a3fed71ba6d36e4431cdde5be8;hb=544da8c704c14f2fd2533711dbf710c34d873e32;hp=b1f9ffe4768fb619e3412f1cf94539be0d449352;hpb=836d93624cd75887af918b059e57dd3fd3f1e445;p=chaz%2Fopenbox diff --git a/util/epist/Makefile.am b/util/epist/Makefile.am index b1f9ffe4..ac2120cf 100644 --- a/util/epist/Makefile.am +++ b/util/epist/Makefile.am @@ -1,28 +1,51 @@ # util/epist/Makefile.am for Blackbox - an X11 Window manager -CPPFLAGS= @CPPFLAGS@ @DEBUG@ +DEFAULT_RC=$(pkgdatadir)/epistrc +CPPFLAGS= @CPPFLAGS@ @DEBUG@ -DDEFAULTRC=\"$(DEFAULT_RC)\" + +#EXTRA_PROGRAMS = epist bin_PROGRAMS = epist -epist_SOURCES = epist.cc window.cc screen.cc main.cc +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 + ../../src/Util.o ../../src/i18n.o ../../src/Timer.o \ + ../../src/GCCache.o ../../src/Color.o +# ../../src/Texture.o \ +# ../../src/Image.o ../../src/ImageControl.o MAINTAINERCLEANFILES = Makefile.in distclean-local: rm -f *\~ .\#* +install-data-local: epistrc + test -f $(DESTDIR)$(pkgdatadir)/epistrc || \ + $(INSTALL_DATA) epistrc $(DESTDIR)$(pkgdatadir) + +uninstall-am: + rm -f $(DESTDIR)$(pkgdatadir)/epistrc + # local dependencies -epist.o: epist.cc epist.hh ../../src/BaseDisplay.hh ../../src/Timer.hh \ - ../../src/Util.hh process.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 -process.o: process.cc -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 +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 +yacc_parser.cc: epist.y + yacc -d epist.y -o yacc_parser.cc +lex.yy.c: epist.l + lex epist.l