added a Makefile

git-svn-id: svn://anubis/gvsu@190 45c1a28c-8058-47b2-ae61-ca45b979098e
This commit is contained in:
josh 2008-10-12 22:35:12 +00:00
parent c433eb2b47
commit ab08e76764

11
cs677/hw7/src/Makefile Normal file
View File

@ -0,0 +1,11 @@
TARGETS := gen_adj_matrix
TARGETS += floyd
all: $(TARGETS)
%: %.o
$(CC) -o $@ $<
clean:
-rm -f *~ *.o $(TARGETS)