From f04d2f0fc3c8cec77b94fa7fe50438a45f06b420 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 11 Jul 2002 01:49:04 +0000 Subject: [PATCH] adding epist! --- configure.in | 1 + util/Makefile.am | 1 + util/epist/Makefile.am | 16 ++++++++++++++++ util/epist/main.cc | 3 +++ 4 files changed, 21 insertions(+) create mode 100644 util/epist/Makefile.am create mode 100644 util/epist/main.cc 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; +} -- 2.39.2