Skip to content

Commit

Permalink
Partially revert. I did not notice there's alaready a .PHONY target for
Browse files Browse the repository at this point in the history
generated_lists. Force removing configure before running autoconf is
enough to make this work as expected.
  • Loading branch information
m6w6 committed Jan 31, 2015
1 parent 130d732 commit f5808f3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@ SUBDIRS = Zend TSRM

STAMP = buildmk.stamp

all: $(STAMP) generated_lists
ALWAYS = generated_lists


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

generated_lists: ALWAYS
generated_lists:
@echo makefile_am_files = Zend/Makefile.am TSRM/Makefile.am > $@
@echo config_m4_files = Zend/Zend.m4 TSRM/tsrm.m4 TSRM/threads.m4 \
Zend/acinclude.m4 ext/*/config*.m4 sapi/*/config.m4 >> $@

ALWAYS:

$(STAMP): build/buildcheck.sh
@build/buildcheck.sh $(STAMP)

Expand Down

0 comments on commit f5808f3

Please sign in to comment.