Loki/test/SafeFormat/Makefile
syntheticpp 21341bc317 independent from libloki, use namespace loki, remove warnings
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@435 7ec92016-0320-0410-acc4-a06ded1c099a
2006-01-05 21:28:37 +00:00

11 lines
174 B
Makefile
Executable file

OBJ = main.o
BIN = main-gcc
CXXFLAGS = -I../../include -Wall -O2 -DNDEBUG
LIBS =
$(BIN): $(OBJ)
$(CXX) -o $(BIN) $(OBJ) $(LIBS)
.PHONY: clean
clean:
rm -f $(OBJ) $(BIN)