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
|
# against of error: Makefile.am:3: `doc_DATA' is used but `docdir' is undefined
docdir = @docdir@
SUBDIRS = src
man_MANS= doc/netdiscover.8
EXTRA_DIST = \
autogen.sh \
doc/create-man.sh \
doc/netdiscover.8 \
doc/netdiscover.txt \
README.md \
README.rpm \
rpm/mandriva.spec \
rpm/redhat.spec \
update-oui-database.sh
distclean-local:
-rm -rf autom4te.cache/ \
build-aux/
rm -f \
aclocal.m4 \
config.h.in \
configure \
doc/Makefile.in \
INSTALL \
Makefile.in \
src/Makefile.in
|