gvsu/cs658/final/Makefile
josh ad262d3484 updated a bit
git-svn-id: svn://anubis/gvsu@371 45c1a28c-8058-47b2-ae61-ca45b979098e
2009-01-17 22:10:19 +00:00

17 lines
215 B
Makefile

ifdef WIN32
export CPPFLAGS += -I"$(shell cd)"
else
export CPPFLAGS += -I"$(shell pwd)"
endif
all:
make -C util
make -C shapes
make -C test
clean:
make -C test clean
make -C shapes clean
make -C util clean