Deleted Added
full compact
Makefile.devel (58551) Makefile.devel (67064)
1# This is the developer's makefile, not the user's makefile.
2# Don't use it unless you know exactly what you do!
3
4SHELL = /bin/sh
5MAKE = make
6
1# This is the developer's makefile, not the user's makefile.
2# Don't use it unless you know exactly what you do!
3
4SHELL = /bin/sh
5MAKE = make
6
7all : configures src/config.h.in
7all : configures src/config.h.in doc/gperf.1
8
9CONFIGURES = configure lib/configure src/configure tests/configure doc/configure
10
11configures : $(CONFIGURES)
12
13configure : configure.in aclocal.m4
14 autoconf -l .
15

--- 10 unchanged lines hidden (view full) ---

26 cd doc && autoconf -l ..
27
28check-configures : $(CONFIGURES)
29 set -e; for f in $(CONFIGURES); do bash -x -n $$f; done
30
31src/config.h.in : src/configure.in aclocal.m4
32 cd src && autoheader -l ..
33
8
9CONFIGURES = configure lib/configure src/configure tests/configure doc/configure
10
11configures : $(CONFIGURES)
12
13configure : configure.in aclocal.m4
14 autoconf -l .
15

--- 10 unchanged lines hidden (view full) ---

26 cd doc && autoconf -l ..
27
28check-configures : $(CONFIGURES)
29 set -e; for f in $(CONFIGURES); do bash -x -n $$f; done
30
31src/config.h.in : src/configure.in aclocal.m4
32 cd src && autoheader -l ..
33
34doc/gperf.1 : force
35 prog=`PATH=build/src:src:$$PATH which gperf`; if test -n "$$prog"; then doc/help2man --name='generate a perfect hash function from a key set' --section=1 $$prog > doc/gperf.1; fi
36
34force :
35
37force :
38