mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2026-01-19 05:34:40 +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)
|