poco/Data/samples/Makefile

17 lines
350 B
Makefile
Raw Normal View History

2007-05-15 18:35:13 +00:00
#
# Makefile
#
2007-05-16 11:23:29 +00:00
# $Id: //poco/Main/Data/samples/Makefile#2 $
2007-05-15 18:35:13 +00:00
#
# Makefile for Poco Data Samples
#
.PHONY: projects
clean all: projects
projects:
$(MAKE) -C Binding $(MAKECMDGOALS)
$(MAKE) -C TypeHandler $(MAKECMDGOALS)
$(MAKE) -C RecordSet $(MAKECMDGOALS)
$(MAKE) -C RowFormatter $(MAKECMDGOALS)
2007-05-16 11:23:29 +00:00
$(MAKE) -C Tuple $(MAKECMDGOALS)