mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
ltmain.sh, and missing from subdirectories. Autoconf automatically looks in the parent directory for these files. I had to copy the files depcomp, ltmain.sh, and missing into the root of the source tree.
22 lines
404 B
Makefile
22 lines
404 B
Makefile
## $Id: Makefile.am,v 1.7 2004/01/03 08:52:22 dugsong Exp $
|
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
SUBDIRS = include src
|
|
|
|
bin_SCRIPTS = dnet-config
|
|
|
|
EXTRA_DIST = LICENSE Makefile.am.common acconfig.h
|
|
|
|
CLEANFILES = dnet-config
|
|
|
|
aux_dir = config
|
|
|
|
AUX_DIST = $(aux_dir)/acinclude.m4
|
|
|
|
dist-hook:
|
|
(cd $(distdir) && mkdir $(aux_dir))
|
|
for file in $(AUX_DIST); do \
|
|
cp $$file $(distdir)/$$file; \
|
|
done
|