mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
257de2bade
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.
5 lines
194 B
Makefile
5 lines
194 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
INCLUDES=@INCLUDES@ -I@top_srcdir@ -I@top_srcdir@/libzend
|
|
noinst_LIBRARIES=libphpext_gd.a
|
|
libphpext_gd_a_SOURCES=gd.c gdcache.c gdttf.c
|