8 lines
167 B
Makefile
8 lines
167 B
Makefile
EXE=daemon
|
|
SRCS=$(shell find . -name "*.c")
|
|
LDFLAGS+=-lpthread
|
|
EXTRA_CFLAGS+=-I.
|
|
|
|
# Include the standard application Makefile for the CSEL1 labs
|
|
include ../../appl.mk
|