mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-07 09:48:04 +01:00
20 lines
289 B
Makefile
20 lines
289 B
Makefile
|
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# Makefile for POCO Trace and dependencies
|
||
|
#
|
||
|
|
||
|
ifndef OSNAME
|
||
|
OSNAME := $(shell uname)
|
||
|
endif
|
||
|
|
||
|
.PHONY: clean distclean trace all
|
||
|
|
||
|
all: trace
|
||
|
|
||
|
trace:
|
||
|
$(MAKE) -f Makefile-Trace $(MAKECMDGOALS) $(MAKEARGS)
|
||
|
|
||
|
clean distclean:
|
||
|
$(MAKE) -f Makefile-Trace $(MAKECMDGOALS) $(MAKEARGS)
|