6 lines
141 B
Makefile
6 lines
141 B
Makefile
test.out: test.cpp ../animatedsprite.cpp
|
|
g++ $^ -lsfml-graphics -lsfml-window -lsfml-system -o $@
|
|
|
|
.PHONY: check
|
|
check: test.out
|
|
./test.out
|