csci4061/lab07-code/Makefile

19 lines
270 B
Makefile
Raw Normal View History

2018-01-29 23:28:37 +00:00
all : sleep_print select_AB read_AB
sleep_print : sleep_print.c
gcc -o $@ $^
select_AB : select_AB.c
gcc -o $@ $^
read_AB : read_AB.c
gcc -o $@ $^
select_AB_children_alive : select_AB_children_alive.c
gcc -o $@ $^
clean :
rm -f sleep_print select_AB read_AB