mirror of
https://github.com/php/php-src.git
synced 2026-04-23 07:58:20 +02:00
8d19edc495
* 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)
17 lines
352 B
Makefile
17 lines
352 B
Makefile
|
|
SUBDIRS = $(EXT_STATIC) $(EXT_SHARED)
|
|
|
|
all:
|
|
@list='$(EXT_STATIC)'; for i in $$list; do \
|
|
echo "Making all in $$i"; \
|
|
(cd $$i && $(MAKE) all) || exit 1; \
|
|
done
|
|
@list='$(EXT_SHARED)'; for i in $$list; do \
|
|
echo "Making shared in $$i"; \
|
|
(cd $$i && $(MAKE) shared) || exit 1; \
|
|
done
|
|
|
|
NO_RECURSION = all
|
|
|
|
include $(top_srcdir)/build/rules.mk
|