adding epist!
This commit is contained in:
parent
26c5c40505
commit
f04d2f0fc3
4 changed files with 21 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
CPPFLAGS= @CPPFLAGS@ @DEBUG@
|
||||
|
||||
SUBDIRS = epist
|
||||
bin_SCRIPTS = bsetbg
|
||||
bin_PROGRAMS = bsetroot
|
||||
|
||||
|
|
16
util/epist/Makefile.am
Normal file
16
util/epist/Makefile.am
Normal 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
3
util/epist/main.cc
Normal file
|
@ -0,0 +1,3 @@
|
|||
int main(int, char **) {
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue