mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-14 11:06:57 +01:00
17 lines
350 B
Makefile
17 lines
350 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)
|