adding epist!

This commit is contained in:
Dana Jansens 2002-07-11 01:49:04 +00:00
parent 26c5c40505
commit f04d2f0fc3
4 changed files with 21 additions and 0 deletions

View file

@ -250,6 +250,7 @@ AM_CONFIG_HEADER(config.h)
AC_OUTPUT(Makefile AC_OUTPUT(Makefile
src/Makefile src/Makefile
util/Makefile util/Makefile
util/epist/Makefile
data/Makefile data/Makefile
data/styles/Makefile data/styles/Makefile
doc/Makefile doc/Makefile

View file

@ -2,6 +2,7 @@
CPPFLAGS= @CPPFLAGS@ @DEBUG@ CPPFLAGS= @CPPFLAGS@ @DEBUG@
SUBDIRS = epist
bin_SCRIPTS = bsetbg bin_SCRIPTS = bsetbg
bin_PROGRAMS = bsetroot bin_PROGRAMS = bsetroot

16
util/epist/Makefile.am Normal file
View file

@ -0,0 +1,16 @@
# util/epist/Makefile.am for Blackbox - an X11 Window manager
CPPFLAGS= @CPPFLAGS@ @DEBUG@
bin_PROGRAMS = epist
epist_SOURCES = main.cc
#epist_LDADD =
MAINTAINERCLEANFILES = Makefile.in
distclean-local:
rm -f *\~ .\#*
# local dependencies

3
util/epist/main.cc Normal file
View file

@ -0,0 +1,3 @@
int main(int, char **) {
return 0;
}