Files
php-gtk-src/build2/build.mk
2005-09-12 17:01:08 +00:00

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)