1
0
Files
MSE-CSEL/solutions/01_environment/tracing/Makefile

10 lines
159 B
Makefile

EXE=app
SRCS=$(wildcard *.c)
ifneq ($(DEBUG),)
EXTRA_CFLAGS+=-DDEBUG
endif
# Include the standard application Makefile for the CSEL1 labs
include ../appl.mk