mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-01 14:55:56 +01:00
16 lines
311 B
Makefile
16 lines
311 B
Makefile
|
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# $Id: //poco/1.4/XML/samples/Makefile#1 $
|
||
|
#
|
||
|
# 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)
|