15 lines
277 B
Makefile
Raw Normal View History

2012-04-29 18:52:25 +00:00
#
# Makefile
#
# Makefile for Poco Foundation testsuite
#
.PHONY: projects
clean all: projects
projects:
$(MAKE) -f Makefile-Driver $(MAKECMDGOALS)
2012-07-10 03:58:41 +00:00
ifneq ($(LINKMODE),STATIC)
2012-04-29 18:52:25 +00:00
$(MAKE) -f Makefile-TestLibrary $(MAKECMDGOALS)
2012-07-10 03:58:41 +00:00
endif
2012-04-29 18:52:25 +00:00
$(MAKE) -f Makefile-TestApp $(MAKECMDGOALS)