mirror of
https://github.com/php/php-gtk-src.git
synced 2026-03-24 01:02:08 +01:00
28 lines
506 B
Makefile
28 lines
506 B
Makefile
# $Id$
|
|
#
|
|
#
|
|
# Makefile to generate build tools
|
|
#
|
|
|
|
STAMP = buildmk.stamp
|
|
|
|
ALWAYS = build2/generated_lists
|
|
|
|
all: $(STAMP) $(ALWAYS)
|
|
@$(MAKE) -s -f build2/build2.mk
|
|
|
|
build2/generated_lists:
|
|
@echo config_m4_files = ext/*/config*.m4 > $@
|
|
|
|
$(STAMP):
|
|
$(PHPIZE)
|
|
@rm -f aclocal.m4 configure config.h.in
|
|
touch $(STAMP)
|
|
|
|
cvsclean-work:
|
|
@for i in `find . -name .cvsignore`; do \
|
|
(cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep -v config.nice` *.o *.a .libs || true); \
|
|
done
|
|
|
|
.PHONY: $(ALWAYS)
|