gvsu/cs677/pa2/Makefile
josh 1c3b6ac652 added test cases, skeleton logic for threaded
git-svn-id: svn://anubis/gvsu@176 45c1a28c-8058-47b2-ae61-ca45b979098e
2008-09-27 14:33:48 +00:00

18 lines
214 B
Makefile

PROGS := sequential threaded
all: $(PROGS)
%: %.cc
$(CXX) -o $@ -pthread -O3 $<
.PHONY: test
test: all
./sequential e1.*
./threaded e1.*
./sequential e2.*
./sequential e2.*
clean:
-rm -f $(PROGS) *~ *.o