10 lines
159 B
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
|