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

14 lines
101 B
Makefile
Raw Normal View History

2021-03-01 15:39:46 +00:00
all: p5 p6 p7
p5:
gcc -o p5 p5.c
p6:
gcc -o p6 p6.c
p7:
gcc -o p7 p7.c
clean:
rm -f p5 p6 p7