Skip to content

Commit

Permalink
MFH
Browse files Browse the repository at this point in the history
  • Loading branch information
foobar committed Nov 29, 2005
1 parent 6f5b989 commit 128119b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ALWAYS = generated_lists


all: $(STAMP) $(ALWAYS)
@$(MAKE) AMFLAGS=$(AMFLAGS) -s -f build/build2.mk
@$(MAKE) -s -f build/build2.mk

generated_lists:
@echo makefile_am_files = $(ZENDDIR)/Makefile.am \
Expand All @@ -55,7 +55,7 @@ snapshot:
test -d $$i || (test -d ../$$i && cp -rp ../$$i $$i); \
done; \
find . -type l -exec rm {} \; ; \
$(MAKE) AMFLAGS=--copy -f build/build.mk; \
$(MAKE) -f build/build.mk; \
cd ..; \
tar cf $$distname.tar $$distname; \
rm -rf $$distname $$distname.tar.*; \
Expand Down
3 changes: 0 additions & 3 deletions build/build2.mk
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ TOUCH_FILES = mkinstalldirs install-sh missing

LT_TARGETS = ltmain.sh config.guess config.sub

makefile_in_files = $(makefile_am_files:.am=.in)
makefile_files = $(makefile_am_files:e.am=e)

config_h_in = main/php_config.h.in

acconfig_h_SOURCES = acconfig.h.in $(config_h_files)
Expand Down
8 changes: 2 additions & 6 deletions buildconf
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ devok=0
debug=no

while test $# -gt 0; do
if test "$1" = "--copy"; then
automake_flags=--copy
fi

if test "$1" = "--force"; then
devok=1
echo "Forcing buildconf"
Expand Down Expand Up @@ -67,7 +63,7 @@ fi
rm -f generated_lists

if test "$debug" = "yes"; then
${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" ZENDDIR="$ZENDDIR" SUPPRESS_WARNINGS=""
${MAKE:-make} -s -f build/build.mk ZENDDIR="$ZENDDIR" SUPPRESS_WARNINGS=""
else
${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" ZENDDIR="$ZENDDIR"
${MAKE:-make} -s -f build/build.mk ZENDDIR="$ZENDDIR"
fi

0 comments on commit 128119b

Please sign in to comment.