mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
bc808cf9d4
- added WebNotifier example - fixed/tidied up SOO alignment code
18 lines
374 B
Makefile
18 lines
374 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)
|
|
$(MAKE) -C WebNotifier $(MAKECMDGOALS)
|