16 lines
199 B
Makefile
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
|