summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/Makefile.am1
-rw-r--r--util/epist/Makefile.am16
-rw-r--r--util/epist/main.cc3
3 files changed, 20 insertions, 0 deletions
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;
+}