source tree re-arrangement
[m6w6/btr] / lib / btr / build / pecl.mk
diff --git a/lib/btr/build/pecl.mk b/lib/btr/build/pecl.mk
new file mode 100644 (file)
index 0000000..545b835
--- /dev/null
@@ -0,0 +1,38 @@
+.PHONY: all
+.SUFFIXES:
+
+CONFIGS=$(wildcard $(BRANCH_DIR)/config*.m4 $(BRANCH_DIR)/*/config*.m4)
+
+all: $(TEST_REPORT)
+       TESTS_PASSED=$$(awk '/^Tests passed/{print $$4}' < $(TEST_REPORT)); \
+       TESTS_FAILED=$$(awk '/^Tests failed/{print $$4}' < $(TEST_REPORT)); \
+       if test -z "$(LAST_REPORT)"; then \
+               printf "%d/%d\n" $$TESTS_PASSED $$TESTS_FAILED; \
+       else \
+               LAST_PASSED=$$(awk '/^Tests passed/{print $$4}' < $(LAST_REPORT)); \
+               LAST_FAILED=$$(awk '/^Tests failed/{print $$4}' < $(LAST_REPORT)); \
+               DIFF_PASSED=$$(bc <<<"$$TESTS_PASSED - $$LAST_PASSED"); \
+               DIFF_FAILED=$$(bc <<<"$$TESTS_FAILED - $$LAST_FAILED"); \
+               printf "+%d/+%d\n" $$DIFF_PASSED $$DIFF_FAILED; \
+       fi;
+
+$(TEST_REPORT): $(BUILD_REPORT)
+       cd $(BUILD_DIR) && \
+       make test TESTS=../$(BRANCH_DIR)/$(TESTS) > ../$@
+
+$(BUILD_REPORT): $(CONFIG_REPORT)
+       cd $(BUILD_DIR) && \
+       make -j $(CPUS) > ../$@
+       
+$(CONFIG_REPORT): $(BRANCH_DIR)/configure $(BUILD_DIR)
+       cd $(BUILD_DIR) && \
+       ../$(BRANCH_DIR)/configure -C $(CONFIGURE) > ../$@
+
+$(BUILD_DIR):
+       mkdir -p $@
+       
+$(BRANCH_DIR)/configure: $(CONFIGS)
+       cd $(BRANCH_DIR) && \
+       phpize > /dev/null
+
+# vim: set noet