Informatik/Assets/Betriebssysteme_uebung/u6-a2-anlage/Makefile

14 lines
192 B
Makefile
Raw Normal View History

2021-03-01 15:39:46 +00:00
CFLAGS = -g
all: daemon
clean:
rm -f helpers.o daemon.o daemon
helpers.o: helpers.c helpers.h
daemon.o: daemon.c helpers.h
daemon: daemon.o helpers.o
$(CC) -o daemon daemon.o helpers.o