php-src/Makefile.in

890 lines
49 KiB
Makefile
Raw Normal View History

1999-04-07 21:05:13 +00:00
# +----------------------------------------------------------------------+
# | PHP HTML Embedded Scripting Language Version 3.0 |
# +----------------------------------------------------------------------+
# | Copyright (c) 1997,1998 PHP Development Team (See Credits file) |
# +----------------------------------------------------------------------+
# | This program is free software; you can redistribute it and/or modify |
# | it under the terms of one of the following licenses: |
# | |
# | A) the GNU General Public License as published by the Free Software |
# | Foundation; either version 2 of the License, or (at your option) |
# | any later version. |
# | |
# | B) the PHP License as published by the PHP Development Team and |
# | included in the distribution in the file: LICENSE |
# | |
# | This program is distributed in the hope that it will be useful, |
# | but WITHOUT ANY WARRANTY; without even the implied warranty of |
# | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
# | GNU General Public License for more details. |
# | |
# | You should have received a copy of both licenses referred to here. |
# | If you did not, or have any questions about PHP licensing, please |
# | contact core@php.net. |
# +----------------------------------------------------------------------+
#
# $Id$
#
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
VPATH = @srcdir@
bindir = @bindir@
ZEND_DIR = $(srcdir)/libzend
CC = @CC@
AR = ar rc
BINNAME = @BINNAME@
INSTALL_IT = @INSTALL_IT@
INCLUDE = -I$(srcdir) -I. -I$(ZEND_DIR) @GDBM_INCLUDE@ @ORACLE_INCLUDE@ @APACHE_INCLUDE@ @FHTTPD_INCLUDE@ @ADA_INCLUDE@ @IODBC_INCLUDE@ @SYBASE_INCLUDE@ @SYBASE_CT_INCLUDE@ @MYSQL_INCLUDE@ @MSQL_INCLUDE@ @SOLID_INCLUDE@ @EMPRESS_INCLUDE@ @OPENLINK_INCLUDE@ @PGSQL_INCLUDE@ @LDAP_INCLUDE@ @VELOCIS_INCLUDE@ @CODBC_INCLUDE@ @GD_INCLUDE@ @IMAP_INCLUDE@ @ZLIB_INCLUDE@ @PDFLIB_INCLUDE@ @FDFLIB_INCLUDE@ @IFX_INCLUDE@ @SNMP_INCLUDE@ @IBASE_INCLUDE@
PROF_CFLAGS =
CFLAGS_SHLIB = @CFLAGS_SHLIB@
LDFLAGS_SHLIB = @LDFLAGS_SHLIB@
LDFLAGS_SHLIB_EXPORT = @LDFLAGS_SHLIB_EXPORT@
CPPFLAGS = @CPPFLAGS@
CFLAGS = @CFLAGS@ $(CFLAGS_SHLIB) $(CPPFLAGS) $(INCLUDE) @DEBUG_CFLAGS@ @STRONGHOLD@ $(PROF_CFLAGS)
LDFLAGS = @LDFLAGS@ $(LDFLAGS_SHLIB) $(LDFLAGS_SHLIB_EXPORT) -L$(ZEND_DIR)
REGCFLAGS = $(CFLAGS)
RANLIB = @RANLIB@
YACC = @YACC@
MAINT = @MAINT@
APXS = @APXS@
APXS_LDFLAGS = @APXS_LDFLAGS@
WARNING_LEVEL = @WARNING_LEVEL@
SOURCE = main.c internal_functions.c snprintf.c php3_sprintf.c \
configuration-parser.c configuration-scanner.c request_info.c \
safe_mode.c fopen-wrappers.c php3_realpath.c alloca.c output.c \
php_ini.c
OBJS = main.o internal_functions.o snprintf.o php3_sprintf.o \
configuration-parser.o configuration-scanner.o request_info.o \
safe_mode.o fopen-wrappers.o php3_realpath.o alloca.o output.o \
php_ini.o
FUNCTIONS_SOURCE = functions/adabasd.c functions/apache.c functions/fhttpd.c \
functions/basic_functions.c \
functions/crypt.c functions/datetime.c functions/db.c \
functions/dbase.c functions/dir.c \
functions/dl.c functions/dns.c functions/exec.c functions/file.c \
functions/filepro.c functions/filestat.c \
functions/formatted_print.c functions/fsock.c functions/gd.c \
functions/head.c functions/html.c functions/image.c functions/imap.c\
functions/link.c functions/mail.c functions/math.c functions/iptc.c \
functions/md5.c functions/microtime.c functions/mime.c \
functions/msql.c functions/mysql.c \
functions/oracle.c functions/oci8.c functions/pack.c \
functions/pageinfo.c functions/pgsql.c \
functions/post.c functions/rand.c functions/reg.c \
functions/solid.c functions/soundex.c \
functions/string.c functions/syslog.c functions/type.c \
functions/uniqid.c functions/sybase.c \
functions/sybase-ct.c functions/url.c functions/base64.c \
functions/info.c @BCMATH_SRC@ functions/xml.c \
functions/unified_odbc.c functions/ldap.c functions/browscap.c \
functions/velocis.c functions/gdttf.c functions/gdcache.c \
functions/zlib.c functions/COM.c functions/ifx.c \
functions/pdf.c functions/hw.c functions/hg_comm.c functions/dlist.c \
functions/fdf.c \
functions/snmp.c functions/var.c functions/interbase.c \
functions/quot_print.c functions/cyr_convert.c \
functions/sysvsem.c functions/sysvshm.c functions/dav.c
FUNCTIONS = $(FUNCTIONS_SOURCE:.c=.o)
LIBS = $(PHPLIBS) @SYBASE_CT_LFLAGS@ @SYBASE_CT_LIBS@ @FHTTPD_LIB@ @DBASE_LIB@ @REGEX_LIB@ @DBM_LIB@ @ORACLE_LFLAGS@ @ORACLE_LIBS@ @IODBC_LFLAGS@ @IODBC_LIBS@ @SYBASE_LFLAGS@ @SYBASE_LIBS@ @SYBASE_CT_LFLAGS@ @SYBASE_CT_LIBS@ @MYSQL_LFLAGS@ @MYSQL_LIBS@ @MSQL_LFLAGS@ @MSQL_LIBS@ @ADA_LFLAGS@ @ADA_LIBS@ @SOLID_LIBS@ @EMPRESS_LIBS@ @OPENLINK_LFLAGS@ @OPENLINK_LIBS@ @PGSQL_LFLAGS@ @PGSQL_LIBS@ @LDAP_LFLAGS@ @LDAP_LIBS@ @VELOCIS_LIBS@ @CODBC_LFLAGS@ @CODBC_LIBS@ @IMAP_LIBS@ @GD_LIBS@ @ZLIB_LIBS@ @PDFLIB_LIBS@ @FDFLIB_LIBS@ @IFX_LFLAGS@ @IFX_LIBS@ @SNMP_LFLAGS@ @SNMP_LIBS@ @IBASE_LFLAGS@ @IBASE_LIBS@ @XML_LIBS@ @LIBS@
all: $(BINNAME)
1999-04-08 08:23:37 +00:00
php: $(OBJS) $(FUNCTIONS) @REGEX_LIB@ @FHTTPD_LIB@ @DBASE_LIB@ $(ZEND_DIR)/libzend.a
1999-04-07 21:05:13 +00:00
$(CC) $(CFLAGS) -o $(BINNAME) $(LDFLAGS) $(OBJS) $(FUNCTIONS) $(LIBS)
libphp3.a: $(OBJS) $(FUNCTIONS) @DBASE_LIB@
$(AR) $(BINNAME) $(OBJS) $(FUNCTIONS) @DBASE_LIB@
$(RANLIB) $(BINNAME)
libmodphp3.a: $(OBJS) $(FUNCTIONS) @DBASE_LIB@
$(AR) $(BINNAME) $(OBJS) $(FUNCTIONS) @DBASE_LIB@
$(RANLIB) $(BINNAME)
libmodphp3-so.a: $(OBJS) $(FUNCTIONS) @DBASE_LIB@
$(AR) libmodphp3-so.a $(OBJS) $(FUNCTIONS) @DBASE_LIB@
$(RANLIB) libmodphp3-so.a
libphp3.so: mod_php3.c libmodphp3-so.a
$(APXS) -c -o libphp3.so $(APXS_LDFLAGS) mod_php3.c libmodphp3-so.a
docs:
cd doc; $(MAKE)
regex/libregex.a:
(cd regex; $(MAKE) lib)
dbase/libdbf.a:
(cd dbase; $(MAKE))
functions/ifx.c: functions/ifx.ec
(if test @INFORMIXDIR@; then esql -e @IFX_ESQL_FLAGS@ functions/ifx.ec; mv ifx.c functions; else touch functions/ifx.c; fi)
configuration-parser.h configuration-parser.c: $(srcdir)/configuration-parser.y
bison -p cfg -v -d $(srcdir)/configuration-parser.y -o configuration-parser.c
configuration-scanner.o:
$(CC) $(CFLAGS) -w$(WARNING_LEVEL) -c configuration-scanner.c
configuration-scanner.c: $(srcdir)/configuration-scanner.l
flex -Pcfg -oconfiguration-scanner.c -i $(srcdir)/configuration-scanner.l
clean:
-rm -f libphp3.a libmodphp3.a php *.o
-rm -f $(FUNCTIONS) functions/ifx.c
-rm -f test/php.desc test/php.in test/php.out test/php.test
-rm -f test/a.tmp test/b.tmp test/test.dbm*
(cd dbase; $(MAKE) clean)
distclean: clean
-rm -f *-parser.[ch] *-scanner.c *.output
-rm -f config.status config.cache config.log
-rm -f Makefile Makefile.depend config.h build-defs.h
-rm -f libphp3.module stamp-h
-rm -f regex/*.o regex/*.a regex/*.ih
-rm -f dbase/*.o dbase/*.a
-rm -f doc/checkdoc doc/funcparse doc/version.ent
-rm -f do-conf test/test.log extra/gd/bdf2gdfont
-rm -f doc/Makefile regex/Makefile dbase/Makefile
bench: $(BINNAME)
./$(BINNAME) -c. tests/bench.phtml
# can't use a single rule for this because 'test' is a directory
test: regression
regression check: $(BINNAME)
cd test && ./testall
config.status: configure
./config.status --recheck
build-defs.h config.h: stamp-h
stamp-h: config.h.in config.status
CONFIG_FILES='build-defs.h stamp-h' ./config.status
Makefile: Makefile.in config.status
CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
#
# You must use '--enable-maintainer-mode' with configure to enable
# these rules, which requires autoconf be installed.
#
configure: @MAINT@ configure.in aclocal.m4
cd $(srcdir) && autoconf
config.h.in: @MAINT@ stamp-h.in
stamp-h.in: configure.in aclocal.m4 acconfig.h
cd ${srcdir} && autoheader && touch ${srcdir}/stamp-h.in
install: $(BINNAME)
$(INSTALL_IT)
indent: clean
indent -v -kr -cli4 -ts4 \
-T pval -T HashTable -T Bucket -T Token -T TokenCache -T TokenCacheManager \
-T switch_expr -T internal_function -T control_structure_data \
-T MemoryHashTable -T MemoryBucket \
-T pvalue_value -T Stack *.c *.h functions/*.c functions/*.h
rm -f *~ functions/*~
.c.o:
$(CC) $(CFLAGS) -c $< -o $@
@bn=`echo $@ | sed -e 's#functions/##'`; test -f $@ || \
(test "$@" != "$$bn" && test -f "$$bn" && mv $$bn $@)
functions/number.o: functions/number.c
$(CC) $(CFLAGS) -w$(WARNING_LEVEL) -c $< -o $@
@bn=`echo $@ | sed -e 's#functions/##'`; test -f $@ || \
(test "$@" != "$$bn" && test -f "$$bn" && mv $$bn $@)
parser-scanner: configuration-parser.c configuration-scanner.c
depend: parser-scanner
$(CC) $(CFLAGS) -MM $(SOURCE) | perl -pe 's|regex/regex.h||;' > Makefile.depend
$(CC) $(CFLAGS) -MM $(FUNCTIONS_SOURCE) | perl -pe 's|^(.+\.o)|functions/$$1|; s|regex/regex.h||;' >> Makefile.depend
1999-04-10 17:39:08 +00:00
main.o: main.c php.h php_version.h libzend/zend.h libzend/config.h \
libzend/config.unix.h libzend/zend_errors.h libzend/zend_alloc.h \
libzend/zend_hash.h libzend/zend_llist.h libzend/zend_API.h \
libzend/modules.h libzend/zend_list.h config.h request_info.h \
php3_compat.h libzend/zend_stack.h safe_mode.h \
fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h build-defs.h \
php_ini.h php_globals.h main.h libzend/zend_globals.h \
libzend/zend_ptr_stack.h libzend/zend_compile.h libzend/zend-parser.h \
1999-04-07 21:05:13 +00:00
libzend/zend_execute.h control_structures.h \
1999-04-10 17:39:08 +00:00
functions/basic_functions.h libzend/zend_highlight.h functions/info.h \
functions/head.h functions/post.h functions/type.h snprintf.h \
libzend/zend_indent.h logos.h
1999-04-07 21:05:13 +00:00
internal_functions.o: internal_functions.c php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h config.h request_info.h php3_compat.h \
libzend/zend_stack.h safe_mode.h fopen-wrappers.h \
output.h libzend/zend_operators.h libzend/zend_variables.h \
1999-04-07 21:05:13 +00:00
libzend/zend_constants.h internal_functions_registry.h \
1999-04-10 17:39:08 +00:00
libzend/zend_compile.h libzend/zend-parser.h libzend/zend_globals.h \
libzend/zend_ptr_stack.h libzend/zend_execute.h functions/php3_ifx.h \
1999-04-07 21:05:13 +00:00
functions/php3_ldap.h functions/php3_mysql.h functions/php3_bcmath.h \
1999-04-10 17:39:08 +00:00
functions/php3_msql.h functions/basic_functions.h \
libzend/zend_highlight.h functions/phpmath.h functions/php3_string.h \
functions/php3_oci8.h functions/oracle.h functions/base64.h \
functions/php3_dir.h functions/dns.h functions/php3_pgsql.h \
functions/php3_velocis.h functions/php3_sybase.h \
functions/php3_sybase-ct.h functions/reg.h functions/php3_mail.h \
functions/imap.h functions/md5.h functions/global.h \
functions/php3_gd.h functions/html.h functions/dl.h functions/head.h \
functions/post.h functions/exec.h functions/php3_solid.h \
functions/adabasd.h functions/file.h functions/dbase.h functions/hw.h \
functions/filepro.h functions/db.h functions/php3_syslog.h \
functions/php3_filestat.h functions/php3_browscap.h functions/pack.h \
1999-04-07 21:05:13 +00:00
functions/php3_unified_odbc.h dl/snmp/php3_snmp.h \
functions/php3_zlib.h functions/php3_COM.h functions/php3_interbase.h \
functions/php3_xml.h functions/php3_pdf.h functions/php3_fdf.h \
functions/php3_sysvsem.h functions/php3_sysvshm.h \
functions/php3_dav.h
snprintf.o: snprintf.c config.h
php3_sprintf.o: php3_sprintf.c config.h
configuration-parser.o: configuration-parser.c php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h config.h request_info.h php3_compat.h \
libzend/zend_stack.h safe_mode.h fopen-wrappers.h \
output.h libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h php_globals.h php_ini.h functions/dl.h \
functions/file.h functions/php3_browscap.h libzend/zend_extensions.h \
libzend/zend_compile.h libzend/zend-parser.h libzend/zend_globals.h \
libzend/zend_ptr_stack.h libzend/zend_execute.h
1999-04-07 21:05:13 +00:00
configuration-scanner.o: configuration-scanner.c php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h config.h request_info.h php3_compat.h \
libzend/zend_stack.h safe_mode.h fopen-wrappers.h \
output.h libzend/zend_operators.h libzend/zend_variables.h \
1999-04-07 21:05:13 +00:00
libzend/zend_constants.h configuration-parser.h
1999-04-10 17:39:08 +00:00
request_info.o: request_info.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h
1999-04-07 21:05:13 +00:00
safe_mode.o: safe_mode.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/pageinfo.h
fopen-wrappers.o: fopen-wrappers.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h php_globals.h \
php3_realpath.h functions/head.h functions/url.h functions/base64.h \
functions/fsock.h functions/php3_string.h libzend/zend_compile.h \
libzend/zend-parser.h libzend/zend_globals.h libzend/zend_ptr_stack.h \
libzend/zend_execute.h
php3_realpath.o: php3_realpath.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h
1999-04-07 21:05:13 +00:00
alloca.o: alloca.c
1999-04-10 17:39:08 +00:00
output.o: output.c php.h php_version.h libzend/zend.h libzend/config.h \
libzend/config.unix.h libzend/zend_errors.h libzend/zend_alloc.h \
libzend/zend_hash.h libzend/zend_llist.h libzend/zend_API.h \
libzend/modules.h libzend/zend_list.h config.h request_info.h \
php3_compat.h libzend/zend_stack.h safe_mode.h \
fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/head.h
1999-04-07 21:05:13 +00:00
php_ini.o: php_ini.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h php_ini.h \
php_globals.h
1999-04-07 21:05:13 +00:00
functions/adabasd.o: functions/adabasd.c config.h build-defs.h php.h \
1999-04-10 17:39:08 +00:00
php_version.h libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h \
libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h functions/php3_string.h functions/head.h \
functions/adabasd.h
functions/apache.o: functions/apache.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/head.h \
php_globals.h php_ini.h mod_php3.h
functions/fhttpd.o: functions/fhttpd.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h
1999-04-07 21:05:13 +00:00
functions/basic_functions.o: functions/basic_functions.c php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h config.h request_info.h php3_compat.h \
libzend/zend_stack.h safe_mode.h fopen-wrappers.h \
output.h libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h php_ini.h internal_functions_registry.h \
functions/basic_functions.h libzend/zend_highlight.h \
1999-04-07 21:05:13 +00:00
functions/phpmath.h functions/php3_string.h functions/dns.h \
functions/md5.h functions/global.h functions/html.h functions/post.h \
functions/exec.h functions/info.h functions/url.h \
functions/datetime.h functions/fsock.h functions/image.h \
functions/php3_link.h functions/php3_filestat.h functions/microtime.h \
functions/pageinfo.h functions/uniqid.h functions/base64.h \
functions/php3_mail.h functions/php3_var.h functions/php3_iptc.h \
1999-04-10 17:39:08 +00:00
functions/quot_print.h functions/cyr_convert.h libzend/zend_globals.h \
libzend/zend_ptr_stack.h libzend/zend_compile.h libzend/zend-parser.h \
libzend/zend_execute.h php_globals.h
1999-04-07 21:05:13 +00:00
functions/crypt.o: functions/crypt.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_string.h
functions/datetime.o: functions/datetime.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/datetime.h snprintf.h php_globals.h
1999-04-07 21:05:13 +00:00
functions/db.o: functions/db.c
functions/dbase.o: functions/dbase.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h php_globals.h
1999-04-07 21:05:13 +00:00
functions/dir.o: functions/dir.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_dir.h
1999-04-07 21:05:13 +00:00
functions/dl.o: functions/dl.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/dl.h \
php_globals.h
1999-04-07 21:05:13 +00:00
functions/dns.o: functions/dns.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/dns.h
1999-04-07 21:05:13 +00:00
functions/exec.o: functions/exec.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_string.h functions/head.h functions/exec.h \
php_globals.h
1999-04-07 21:05:13 +00:00
functions/file.o: functions/file.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/head.h \
functions/php3_string.h functions/file.h snprintf.h functions/fsock.h \
php_globals.h
functions/filepro.o: functions/filepro.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h php_globals.h \
functions/filepro.h
functions/filestat.o: functions/filestat.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h php_globals.h \
functions/php3_filestat.h
1999-04-07 21:05:13 +00:00
functions/formatted_print.o: functions/formatted_print.c php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h config.h request_info.h php3_compat.h \
libzend/zend_stack.h safe_mode.h fopen-wrappers.h \
output.h libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h functions/head.h functions/php3_string.h \
libzend/zend_execute.h libzend/zend_compile.h libzend/zend-parser.h \
libzend/zend_globals.h libzend/zend_ptr_stack.h
1999-04-07 21:05:13 +00:00
functions/fsock.o: functions/fsock.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/base64.h \
functions/file.h functions/post.h functions/url.h functions/fsock.h \
1999-04-07 21:05:13 +00:00
build-defs.h
functions/gd.o: functions/gd.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/head.h \
functions/php3_gd.h
1999-04-07 21:05:13 +00:00
functions/head.o: functions/head.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/reg.h \
1999-04-07 21:05:13 +00:00
functions/php3_string.h functions/pageinfo.h main.h \
libzend/zend_globals.h libzend/zend_ptr_stack.h \
1999-04-10 17:39:08 +00:00
libzend/zend_compile.h libzend/zend-parser.h libzend/zend_execute.h \
functions/datetime.h functions/head.h functions/post.h php_globals.h \
functions/url.h
1999-04-07 21:05:13 +00:00
functions/html.o: functions/html.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/reg.h \
functions/html.h
1999-04-07 21:05:13 +00:00
functions/image.o: functions/image.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/image.h
functions/imap.o: functions/imap.c config.h php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h
1999-04-07 21:05:13 +00:00
functions/link.o: functions/link.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_filestat.h php_globals.h functions/php3_link.h
1999-04-07 21:05:13 +00:00
functions/mail.o: functions/mail.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h build-defs.h \
functions/php3_mail.h php_ini.h
1999-04-07 21:05:13 +00:00
functions/math.o: functions/math.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/phpmath.h \
snprintf.h
1999-04-07 21:05:13 +00:00
functions/iptc.o: functions/iptc.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_iptc.h
1999-04-07 21:05:13 +00:00
functions/md5.o: functions/md5.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/md5.h \
functions/global.h
functions/microtime.o: functions/microtime.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/microtime.h snprintf.h
1999-04-07 21:05:13 +00:00
functions/mime.o: functions/mime.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/type.h \
functions/post.h functions/mime.h libzend/zend_globals.h \
libzend/zend_ptr_stack.h libzend/zend_compile.h libzend/zend-parser.h \
libzend/zend_execute.h php_globals.h
functions/msql.o: functions/msql.c config.h php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_msql.h functions/reg.h functions/php3_string.h \
php_globals.h
1999-04-07 21:05:13 +00:00
functions/mysql.o: functions/mysql.c config.h build-defs.h php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h \
libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h php_globals.h functions/php3_string.h \
functions/php3_mysql.h php_ini.h
functions/oracle.o: functions/oracle.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/oracle.h
1999-04-07 21:05:13 +00:00
functions/oci8.o: functions/oci8.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_oci8.h
1999-04-07 21:05:13 +00:00
functions/pack.o: functions/pack.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/head.h \
1999-04-07 21:05:13 +00:00
functions/php3_string.h functions/pack.h snprintf.h functions/fsock.h
1999-04-10 17:39:08 +00:00
functions/pageinfo.o: functions/pageinfo.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/pageinfo.h
functions/pgsql.o: functions/pgsql.c config.h php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_pgsql.h functions/php3_string.h php_globals.h
1999-04-07 21:05:13 +00:00
functions/post.o: functions/post.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/mime.h \
functions/type.h functions/php3_string.h functions/post.h \
functions/url.h php_globals.h libzend/zend_globals.h \
libzend/zend_ptr_stack.h libzend/zend_compile.h libzend/zend-parser.h \
1999-04-07 21:05:13 +00:00
libzend/zend_execute.h
functions/rand.o: functions/rand.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/phpmath.h
1999-04-07 21:05:13 +00:00
functions/reg.o: functions/reg.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_string.h functions/reg.h
1999-04-07 21:05:13 +00:00
functions/solid.o: functions/solid.c config.h build-defs.h php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h \
1999-04-07 21:05:13 +00:00
libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h functions/php3_solid.h
1999-04-10 17:39:08 +00:00
functions/soundex.o: functions/soundex.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
1999-04-07 21:05:13 +00:00
functions/php3_string.h
1999-04-10 17:39:08 +00:00
functions/string.o: functions/string.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/reg.h \
functions/post.h functions/php3_string.h libzend/zend_execute.h \
libzend/zend_compile.h libzend/zend-parser.h libzend/zend_globals.h \
libzend/zend_ptr_stack.h php_globals.h
functions/syslog.o: functions/syslog.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h php_ini.h \
libzend/zend_globals.h libzend/zend_ptr_stack.h \
libzend/zend_compile.h libzend/zend-parser.h libzend/zend_execute.h \
1999-04-07 21:05:13 +00:00
functions/php3_syslog.h
functions/type.o: functions/type.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/type.h
functions/uniqid.o: functions/uniqid.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/uniqid.h
1999-04-07 21:05:13 +00:00
functions/sybase.o: functions/sybase.c config.h php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h \
1999-04-07 21:05:13 +00:00
libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h functions/php3_sybase.h \
1999-04-10 17:39:08 +00:00
functions/php3_string.h php_globals.h
1999-04-07 21:05:13 +00:00
functions/sybase-ct.o: functions/sybase-ct.c config.h php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h \
1999-04-07 21:05:13 +00:00
libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h functions/php3_sybase-ct.h \
1999-04-10 17:39:08 +00:00
functions/php3_string.h php_globals.h
1999-04-07 21:05:13 +00:00
functions/url.o: functions/url.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/url.h
functions/base64.o: functions/base64.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/base64.h
1999-04-07 21:05:13 +00:00
functions/info.o: functions/info.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h php_ini.h \
php_globals.h functions/head.h functions/info.h build-defs.h \
libzend/zend_globals.h libzend/zend_ptr_stack.h \
libzend/zend_compile.h libzend/zend-parser.h libzend/zend_execute.h
1999-04-07 21:05:13 +00:00
functions/bcmath.o: functions/bcmath.c config.h build-defs.h php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h \
1999-04-07 21:05:13 +00:00
libzend/zend_operators.h libzend/zend_variables.h \
1999-04-10 17:39:08 +00:00
libzend/zend_constants.h functions/number.h functions/php3_bcmath.h
1999-04-07 21:05:13 +00:00
functions/number.o: functions/number.c functions/number.h php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h config.h request_info.h php3_compat.h \
libzend/zend_stack.h safe_mode.h fopen-wrappers.h \
output.h libzend/zend_operators.h libzend/zend_variables.h \
1999-04-07 21:05:13 +00:00
libzend/zend_constants.h
functions/xml.o: functions/xml.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_xml.h
1999-04-07 21:05:13 +00:00
functions/unified_odbc.o: functions/unified_odbc.c config.h build-defs.h php.h \
1999-04-10 17:39:08 +00:00
php_version.h libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h \
1999-04-07 21:05:13 +00:00
libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h dl/phpdl.h functions/php3_string.h \
functions/php3_unified_odbc.h functions/head.h snprintf.h
1999-04-10 17:39:08 +00:00
functions/ldap.o: functions/ldap.c config.h php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h
functions/browscap.o: functions/browscap.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_browscap.h php_ini.h libzend/zend_globals.h \
libzend/zend_ptr_stack.h libzend/zend_compile.h libzend/zend-parser.h \
1999-04-07 21:05:13 +00:00
libzend/zend_execute.h
1999-04-10 17:39:08 +00:00
functions/velocis.o: functions/velocis.c php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_velocis.h
functions/gdttf.o: functions/gdttf.c config.h
functions/gdcache.o: functions/gdcache.c config.h
1999-04-07 21:05:13 +00:00
functions/zlib.o: functions/zlib.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/head.h \
1999-04-07 21:05:13 +00:00
functions/php3_string.h functions/php3_zlib.h snprintf.h
functions/COM.o: functions/COM.c
functions/pdf.o: functions/pdf.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/head.h \
1999-04-07 21:05:13 +00:00
functions/php3_pdf.h
1999-04-10 17:39:08 +00:00
functions/hw.o: functions/hw.c config.h php.h php_version.h libzend/zend.h \
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/head.h
1999-04-07 21:05:13 +00:00
functions/hg_comm.o: functions/hg_comm.c config.h
functions/dlist.o: functions/dlist.c config.h
functions/fdf.o: functions/fdf.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/head.h \
1999-04-07 21:05:13 +00:00
functions/php3_fdf.h
functions/snmp.o: functions/snmp.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_snmp.h
1999-04-07 21:05:13 +00:00
functions/var.o: functions/var.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h functions/reg.h \
functions/post.h functions/php3_string.h functions/php3_var.h
1999-04-07 21:05:13 +00:00
functions/interbase.o: functions/interbase.c config.h php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h \
1999-04-07 21:05:13 +00:00
libzend/zend_operators.h libzend/zend_variables.h \
libzend/zend_constants.h functions/php3_interbase.h
functions/quot_print.o: functions/quot_print.c php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h config.h request_info.h php3_compat.h \
libzend/zend_stack.h safe_mode.h fopen-wrappers.h \
output.h libzend/zend_operators.h libzend/zend_variables.h \
1999-04-07 21:05:13 +00:00
libzend/zend_constants.h functions/quot_print.h
functions/cyr_convert.o: functions/cyr_convert.c php.h php_version.h \
1999-04-10 17:39:08 +00:00
libzend/zend.h libzend/config.h libzend/config.unix.h \
libzend/zend_errors.h libzend/zend_alloc.h libzend/zend_hash.h \
libzend/zend_llist.h libzend/zend_API.h libzend/modules.h \
libzend/zend_list.h config.h request_info.h php3_compat.h \
libzend/zend_stack.h safe_mode.h fopen-wrappers.h \
output.h libzend/zend_operators.h libzend/zend_variables.h \
1999-04-07 21:05:13 +00:00
libzend/zend_constants.h functions/cyr_convert.h
functions/sysvsem.o: functions/sysvsem.c config.h
functions/sysvshm.o: functions/sysvshm.c config.h
functions/dav.o: functions/dav.c php.h php_version.h libzend/zend.h \
1999-04-10 17:39:08 +00:00
libzend/config.h libzend/config.unix.h libzend/zend_errors.h \
libzend/zend_alloc.h libzend/zend_hash.h libzend/zend_llist.h \
libzend/zend_API.h libzend/modules.h libzend/zend_list.h config.h \
request_info.h php3_compat.h libzend/zend_stack.h \
safe_mode.h fopen-wrappers.h output.h libzend/zend_operators.h \
libzend/zend_variables.h libzend/zend_constants.h \
functions/php3_dav.h
1999-04-07 21:05:13 +00:00
# Local Variables:
# tab-width: 4
# End: