diff options
| author | Sascha Schumann <sas@php.net> | 2000-04-30 03:10:34 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-04-30 03:10:34 +0000 |
| commit | 8d19edc4953cbec69bbdca2f310d7d8d22be7494 (patch) | |
| tree | 14987a28d285a2204ef7fbc9b37a3181d7badfc5 /ext | |
| parent | be00d130e6006c121c0a2461946b4e02e9a9e30b (diff) | |
| download | php-git-8d19edc4953cbec69bbdca2f310d7d8d22be7494.tar.gz | |
Overall UNIX build system improvements:
* Makefile header is now completely dynamic
* Absolute paths in (top_)?(src|build)dir and VPATH
(fixes Tru64 support)
* VPATH does not contain variables anymore
(fixes UnixWare support)
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/Makefile.in | 7 | ||||
| -rwxr-xr-x | ext/ext_skel | 7 |
2 files changed, 2 insertions, 12 deletions
diff --git a/ext/Makefile.in b/ext/Makefile.in index 4f3ead03f9..d490f0116f 100644 --- a/ext/Makefile.in +++ b/ext/Makefile.in @@ -1,9 +1,4 @@ -DEPTH = .. -topsrcdir = @topsrcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - SUBDIRS = $(EXT_STATIC) $(EXT_SHARED) all: @@ -18,4 +13,4 @@ all: NO_RECURSION = all -include $(topsrcdir)/build/rules.mk +include $(top_srcdir)/build/rules.mk diff --git a/ext/ext_skel b/ext/ext_skel index 7e5fb40501..3db7ebae57 100755 --- a/ext/ext_skel +++ b/ext/ext_skel @@ -64,15 +64,10 @@ $ECHO_N " Makefile.in$ECHO_C" cat >Makefile.in <<eof # \$Id\$ -DEPTH = ../.. -topsrcdir = @topsrcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - LTLIBRARY_NAME = lib$extname.la LTLIBRARY_SOURCES = $extname.c -include \$(topsrcdir)/build/ltlib.mk +include \$(top_srcdir)/build/ltlib.mk eof |
