summaryrefslogtreecommitdiff
path: root/pjlib
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2013-01-30 15:23:42 -0600
committerJason Parker <jparker@digium.com>2013-03-11 15:19:15 -0500
commit74ce69c77a8ed993870e6cc22582a1dea8e918e6 (patch)
tree8def2a05c0a230623f415d3ffdef0684ecfcc4f6 /pjlib
parent483805f79570115ab95c69698792d238c1719b1b (diff)
Add proper dependency checking, so that parallel builds work.
This also lets you build individual library files, rather than aliases.
Diffstat (limited to 'pjlib')
-rw-r--r--pjlib/build/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/pjlib/build/Makefile b/pjlib/build/Makefile
index a36f5f4..272206d 100644
--- a/pjlib/build/Makefile
+++ b/pjlib/build/Makefile
@@ -77,17 +77,21 @@ depend: ../include/pj/config_site.h
echo '$(TEST_EXE): $(PJLIB_LIB)' >> .pjlib-test-$(TARGET_NAME).depend
-.PHONY: dep depend pjlib pjlib-test clean realclean distclean
+.PHONY: dep depend clean realclean distclean
+.PHONY: $(TARGETS)
+.PHONY: $(PJLIB_LIB) $(TEST_EXE)
dep: depend
-pjlib: ../include/pj/config_site.h
+pjlib: $(PJLIB_LIB)
+$(PJLIB_LIB): ../include/pj/config_site.h
$(MAKE) -f $(RULES_MAK) APP=PJLIB app=pjlib $(PJLIB_LIB)
../include/pj/config_site.h:
touch ../include/pj/config_site.h
-
-pjlib-test: pjlib
+
+pjlib-test: $(TEST_EXE)
+$(TEST_EXE): $(PJLIB_LIB)
$(MAKE) -f $(RULES_MAK) APP=TEST app=pjlib-test $(TEST_EXE)
.PHONY: ../lib/pjlib.ko