diff options
author | Sascha Schumann <sas@php.net> | 1999-07-03 22:05:56 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-07-03 22:05:56 +0000 |
commit | 377d7d599d29ce5a2f8cf09d5c0cecd4501ffa82 (patch) | |
tree | 96b99b3f3818ded68809a0c92c763f0e815a4693 | |
parent | 6dd7254b39f908f7db522213111e33b177b2efb1 (diff) | |
download | php-git-377d7d599d29ce5a2f8cf09d5c0cecd4501ffa82.tar.gz |
*** empty log message ***
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index ba1d252fa6..d1d981db23 100644 --- a/Makefile.in +++ b/Makefile.in @@ -109,9 +109,9 @@ libmodphp4-so.a: all-recursive $(OBJS) @REGEX_LIB@ # Apache 1.3 shared module libphp4.so: $(srcdir)/mod_php4.c libmodphp4-so.a @REGEX_LIB@ - -@test -f mod_php4.c || test -L mod_php4.c || $(LN_S) $(srcdir)/mod_php4.c mod_php4.c - -@test -f mod_php4.c || test -h mod_php4.c || $(LN_S) $(srcdir)/mod_php4.c mod_php4.c - $(APXS) $(INCLUDE) -c -o libphp4.so @RPATHS@ mod_php4.c libmodphp4-so.a $(APXS_LDFLAGS) $(APXS_EXP) + -@test -f ./mod_php4.c || test -L ./mod_php4.c || $(LN_S) $(srcdir)/mod_php4.c ./mod_php4.c + -@test -f ./mod_php4.c || test -h ./mod_php4.c || $(LN_S) $(srcdir)/mod_php4.c ./mod_php4.c + $(APXS) $(INCLUDE) -c -o libphp4.so @RPATHS@ ./mod_php4.c libmodphp4-so.a $(APXS_LDFLAGS) $(APXS_EXP) regex/libregex.a: (cd regex; $(MAKE) lib) @@ -163,6 +163,12 @@ distdir: fi; \ done (cd $(distdir) ; $(MAKE) distclean) + cd $(distdir)/libzend ;\ + flex -Pzend -ozend-scanner.c -i zend-scanner.l ;\ + bison -p zend -v -d zend-parser.y -o zend-parser.c + cd $(distdir) ;\ + flex -Pcfg -oconfiguration-scanner.c -i configuration-scanner.l ;\ + bison -p cfg -v -d configuration-parser.y -o configuration-parser.c find $(distdir) -name CVS -o -name .cvsignore | xargs rm -rf |