gvsu/cs677/hw1/Makefile
josh d840f6e21e added clean target to Makefile
git-svn-id: svn://anubis/gvsu@137 45c1a28c-8058-47b2-ae61-ca45b979098e
2008-08-30 16:36:04 +00:00

16 lines
199 B
Makefile

TARGET := minimum-energy
all: $(TARGET)
$(TARGET): $(TARGET).cc
$(CXX) -o $@ $^
clean:
-rm -f $(TARGET) *~
.PHONY: test
test:
./$(TARGET) test-impossible.txt
./$(TARGET) test-long-short.txt