Initial commit

This commit is contained in:
2021-10-01 20:24:05 +02:00
commit 860c025165
194 changed files with 4846 additions and 0 deletions

17
kapitel15/matte/Makefile Normal file
View File

@@ -0,0 +1,17 @@
CC=cc
CFLAGS=-Wall -Wextra -pedantic -std=c99 -D_XOPEN_SOURCE=600
matte: matte.o minmattefunk.o usage.o
$(CC) -o matte matte.o minmattefunk.o usage.o
matte.o: matte.c minmattefunk.h usage.h
$(CC) $(CFLAGS) -c matte.c
minmattefunk.o: minmattefunk.c
$(CC) $(CFLAGS) -c minmattefunk.c
usage.o: usage.c
$(CC) $(CFLAGS) -c usage.c
clean:
rm matte minmattefunk.o matte.o usage.o