X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2FMakefile.am;h=ac2120cf85d292a3fed71ba6d36e4431cdde5be8;hb=544da8c704c14f2fd2533711dbf710c34d873e32;hp=2accf1268dc6482ba1ef94f959c314f9aaa9ea65;hpb=6d40002093a5d8e665d4f310ea028d22e93e88cb;p=chaz%2Fopenbox diff --git a/util/epist/Makefile.am b/util/epist/Makefile.am index 2accf126..ac2120cf 100644 --- a/util/epist/Makefile.am +++ b/util/epist/Makefile.am @@ -1,34 +1,51 @@ # util/epist/Makefile.am for Blackbox - an X11 Window manager -CPPFLAGS= @CPPFLAGS@ @DEBUG@ +DEFAULT_RC=$(pkgdatadir)/epistrc -EXTRA_PROGRAMS = epist +CPPFLAGS= @CPPFLAGS@ @DEBUG@ -DDEFAULTRC=\"$(DEFAULT_RC)\" + +#EXTRA_PROGRAMS = epist +bin_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 + ../../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 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 +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