poco/Foundation/testsuite/Makefile

15 lines
287 B
Makefile
Raw Normal View History

2012-04-29 20:52:25 +02:00
#
# Makefile
#
# Makefile for Poco Foundation testsuite
#
.PHONY: projects
2023-10-15 17:56:48 +02:00
clean distclean all: projects
2012-04-29 20:52:25 +02:00
projects:
$(MAKE) -f Makefile-Driver $(MAKECMDGOALS)
2012-07-10 05:58:41 +02:00
ifneq ($(LINKMODE),STATIC)
2012-04-29 20:52:25 +02:00
$(MAKE) -f Makefile-TestLibrary $(MAKECMDGOALS)
2012-07-10 05:58:41 +02:00
endif
2012-04-29 20:52:25 +02:00
$(MAKE) -f Makefile-TestApp $(MAKECMDGOALS)