1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# Makefile.am for Blackbox - an X11 Window manager
AUTOMAKE_OPTIONS = foreign
SUBDIRS = data \
doc \
lib \
src \
util
MAINTAINERCLEANFILES = Makefile.in \
aclocal.m4 \
config.h.in \
config.guess \
config.sub \
configure \
configure.lineno \
depcomp \
install-sh \
ltmain.sh \
missing \
mkinstalldirs
LIBTOOL_DEPS = @LIBTOOLS_DEPS@
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status --recheck
uninstall-local:
-rmdir $(pkgdatadir)
distclean-local:
rm -f *\~ gmon.out .\#*
rm -rf autom4te.cache
|