mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
17 lines
331 B
Makefile
17 lines
331 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# $Id: //poco/1.4/Foundation/testsuite/Makefile#1 $
|
|
#
|
|
# Makefile for Poco Foundation testsuite
|
|
#
|
|
|
|
.PHONY: projects
|
|
clean all: projects
|
|
projects:
|
|
$(MAKE) -f Makefile-Driver $(MAKECMDGOALS)
|
|
ifneq ($(LINKMODE),STATIC)
|
|
$(MAKE) -f Makefile-TestLibrary $(MAKECMDGOALS)
|
|
endif
|
|
$(MAKE) -f Makefile-TestApp $(MAKECMDGOALS)
|