summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-11 01:49:04 +0000
committerDana Jansens <danakj@orodu.net>2002-07-11 01:49:04 +0000
commitf04d2f0fc3c8cec77b94fa7fe50438a45f06b420 (patch)
treece43bc05820f53534d54c87fb3c7019baafd1997
parent26c5c40505ce21ae6b5ffe20e9a976e5891e3379 (diff)
adding epist!
-rw-r--r--configure.in1
-rw-r--r--util/Makefile.am1
-rw-r--r--util/epist/Makefile.am16
-rw-r--r--util/epist/main.cc3
4 files changed, 21 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 23b9d405..24125c93 100644
--- a/configure.in
+++ b/configure.in
@@ -250,6 +250,7 @@ AM_CONFIG_HEADER(config.h)
AC_OUTPUT(Makefile
src/Makefile
util/Makefile
+util/epist/Makefile
data/Makefile
data/styles/Makefile
doc/Makefile
diff --git a/util/Makefile.am b/util/Makefile.am
index 9d60a964..7da2187b 100644
--- a/util/Makefile.am
+++ b/util/Makefile.am
@@ -2,6 +2,7 @@
CPPFLAGS= @CPPFLAGS@ @DEBUG@
+SUBDIRS = epist
bin_SCRIPTS = bsetbg
bin_PROGRAMS = bsetroot
diff --git a/util/epist/Makefile.am b/util/epist/Makefile.am
new file mode 100644
index 00000000..48c57e47
--- /dev/null
+++ b/util/epist/Makefile.am
@@ -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
+
diff --git a/util/epist/main.cc b/util/epist/main.cc
new file mode 100644
index 00000000..7b48abd9
--- /dev/null
+++ b/util/epist/main.cc
@@ -0,0 +1,3 @@
+int main(int, char **) {
+ return 0;
+}