summaryrefslogtreecommitdiffstats
path: root/contrib/gperf/Makefile.devel
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2000-03-25 07:45:29 +0000
committerkris <kris@FreeBSD.org>2000-03-25 07:45:29 +0000
commit533744c77137b94ed05e2ca445ba97d71c79ee5f (patch)
treefa102ad70fa8d5585900bf7e1872826b467f5d2e /contrib/gperf/Makefile.devel
parent6cfe3ae61b383acc12d75bc595be2ab185d5586c (diff)
downloadFreeBSD-src-533744c77137b94ed05e2ca445ba97d71c79ee5f.zip
FreeBSD-src-533744c77137b94ed05e2ca445ba97d71c79ee5f.tar.gz
Virgin import of gperf v2.7
Diffstat (limited to 'contrib/gperf/Makefile.devel')
-rw-r--r--contrib/gperf/Makefile.devel35
1 files changed, 35 insertions, 0 deletions
diff --git a/contrib/gperf/Makefile.devel b/contrib/gperf/Makefile.devel
new file mode 100644
index 0000000..e145bd8
--- /dev/null
+++ b/contrib/gperf/Makefile.devel
@@ -0,0 +1,35 @@
+# This is the developer's makefile, not the user's makefile.
+# Don't use it unless you know exactly what you do!
+
+SHELL = /bin/sh
+MAKE = make
+
+all : configures src/config.h.in
+
+CONFIGURES = configure lib/configure src/configure tests/configure doc/configure
+
+configures : $(CONFIGURES)
+
+configure : configure.in aclocal.m4
+ autoconf -l .
+
+lib/configure : lib/configure.in aclocal.m4
+ cd lib && autoconf -l ..
+
+src/configure : src/configure.in aclocal.m4
+ cd src && autoconf -l ..
+
+tests/configure : tests/configure.in aclocal.m4
+ cd tests && autoconf -l ..
+
+doc/configure : doc/configure.in aclocal.m4
+ cd doc && autoconf -l ..
+
+check-configures : $(CONFIGURES)
+ set -e; for f in $(CONFIGURES); do bash -x -n $$f; done
+
+src/config.h.in : src/configure.in aclocal.m4
+ cd src && autoheader -l ..
+
+force :
+
OpenPOWER on IntegriCloud