mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-09 19:17:38 +01:00
16 lines
297 B
Makefile
16 lines
297 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# $Id: //poco/Main/XML/samples/Makefile#6 $
|
|
#
|
|
# Makefile for Poco XML Samples
|
|
#
|
|
|
|
.PHONY: projects
|
|
clean all: projects
|
|
projects:
|
|
$(MAKE) -C DOMParser $(MAKECMDGOALS)
|
|
$(MAKE) -C DOMWriter $(MAKECMDGOALS)
|
|
$(MAKE) -C PrettyPrint $(MAKECMDGOALS)
|
|
$(MAKE) -C SAXParser $(MAKECMDGOALS)
|