aboutsummaryrefslogtreecommitdiffstats
path: root/csci4061/110920_breakout/chap8/Makefile
blob: bd92becd0f03c47ff4339f899af7f5ebc2986b5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
pgm81: pgm_8_1.c
	gcc pgm_8_1.c -lm -o  out
	./out 5

pgm85: pgm_8_5.c
	gcc pgm_8_5.c -lm -o  out
	./out

.PHONY: clean

clean:
	rm out