mailiverse/cpp/Lib/cajun-2.0.2/Makefile
2013-07-25 22:51:23 -04:00

8 lines
90 B
Makefile
Executable File

EXE_NAME = ./test.out
$(EXE_NAME): test.cpp
g++ -o $@ $^
clean:
rm $(EXE_NAME)