From ab08e7676406caaec877b353e4a0ab73ff1a4c18 Mon Sep 17 00:00:00 2001 From: josh Date: Sun, 12 Oct 2008 22:35:12 +0000 Subject: [PATCH] added a Makefile git-svn-id: svn://anubis/gvsu@190 45c1a28c-8058-47b2-ae61-ca45b979098e --- cs677/hw7/src/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 cs677/hw7/src/Makefile diff --git a/cs677/hw7/src/Makefile b/cs677/hw7/src/Makefile new file mode 100644 index 0000000..e95939a --- /dev/null +++ b/cs677/hw7/src/Makefile @@ -0,0 +1,11 @@ + +TARGETS := gen_adj_matrix +TARGETS += floyd + +all: $(TARGETS) + +%: %.o + $(CC) -o $@ $< + +clean: + -rm -f *~ *.o $(TARGETS)