mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
14 lines
261 B
Makefile
14 lines
261 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco XML Samples
|
|
#
|
|
|
|
.PHONY: projects
|
|
clean distclean all: projects
|
|
projects:
|
|
$(MAKE) -C DOMParser $(MAKECMDGOALS)
|
|
$(MAKE) -C DOMWriter $(MAKECMDGOALS)
|
|
$(MAKE) -C PrettyPrint $(MAKECMDGOALS)
|
|
$(MAKE) -C SAXParser $(MAKECMDGOALS)
|