wez             Wed Dec  3 11:51:23 2003 EDT

  Modified files:              
    /php-src/win32/build        Makefile 
  Log:
  add rule for parsedate
  
Index: php-src/win32/build/Makefile
diff -u php-src/win32/build/Makefile:1.3 php-src/win32/build/Makefile:1.4
--- php-src/win32/build/Makefile:1.3    Wed Dec  3 09:58:05 2003
+++ php-src/win32/build/Makefile        Wed Dec  3 11:51:23 2003
@@ -14,7 +14,7 @@
 #  | Author: Wez Furlong <[EMAIL PROTECTED]>                           |
 #  +----------------------------------------------------------------------+
 #
-# $Id: Makefile,v 1.3 2003/12/03 14:58:05 wez Exp $
+# $Id: Makefile,v 1.4 2003/12/03 16:51:23 wez Exp $
 # This is the makefile template for the win32 build
 
 CC="$(CL)"
@@ -42,6 +42,10 @@
 Zend\zend_language_scanner.c: Zend\flex.skl Zend\zend_language_scanner.l
        flex -i -SZend/flex.skl -Pzend -oZend/zend_language_scanner.c 
Zend/zend_language_scanner.l
 
+ext\standard\parsedate.c ext\standard\parsedate.h: ext\standard\parsedate.y
+       bison --output=ext/standard/parsedate.c -v -d ext/standard/parsedate.y 
+
+
 $(BUILD_DIR)\$(PHPDLL): $(PHPDEF) $(PHP_GLOBAL_OBJS) $(STATIC_EXT_OBJS)
        $(LD) /out:$(BUILD_DIR)\$(PHPDLL) $(PHP_LDFLAGS) $(LDFLAGS) 
$(STATIC_EXT_LDFLAGS) $(PHP_GLOBAL_OBJS) $(STATIC_EXT_OBJS) $(STATIC_EXT_LIBS) $(LIBS)
        

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to