gvsu/cs677/pa2/Makefile
josh b59e2667c1 fixed Makefile, added task distribution logic to threaded
git-svn-id: svn://anubis/gvsu@177 45c1a28c-8058-47b2-ae61-ca45b979098e
2008-09-27 15:29:52 +00:00

18 lines
212 B
Makefile

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