poco/Foundation/testsuite/Makefile
2023-10-15 17:56:48 +02:00

15 lines
287 B
Makefile

#
# Makefile
#
# Makefile for Poco Foundation testsuite
#
.PHONY: projects
clean distclean all: projects
projects:
$(MAKE) -f Makefile-Driver $(MAKECMDGOALS)
ifneq ($(LINKMODE),STATIC)
$(MAKE) -f Makefile-TestLibrary $(MAKECMDGOALS)
endif
$(MAKE) -f Makefile-TestApp $(MAKECMDGOALS)