mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
17 lines
334 B
Makefile
17 lines
334 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# $Id: //poco/Main/Data/samples/Makefile#2 $
|
|
#
|
|
# 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)
|
|
$(MAKE) -C Tuple $(MAKECMDGOALS)
|