Enable dependencies for UNIX. Because this only works, if you use

GNU make and GCC, you need to enable it manually by running

$ touch php4/want_dependencies
This commit is contained in:
Sascha Schumann 1999-12-24 22:55:33 +00:00
parent e25e3f092a
commit 9120a4231c

View File

@ -36,7 +36,8 @@ $(makefile_in_files): $(makefile_am_files) aclocal.m4 configure.in $(config_m4_f
cp $$i.bak $$i; \ cp $$i.bak $$i; \
fi; \ fi; \
done done
@automake -a -i $(AMFLAGS) $(makefile_files) 2>&1 \ @test -f want_dependencies || flag=-i; \
automake -a $$flag $(AMFLAGS) $(makefile_files) 2>&1 \
| grep -v PHP_OUTPUT_FILES || true >&2 | grep -v PHP_OUTPUT_FILES || true >&2
@for i in $(LT_TARGETS); do mv $$i.bak $$i; done @for i in $(LT_TARGETS); do mv $$i.bak $$i; done