ee494e1c57
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@422 7ec92016-0320-0410-acc4-a06ded1c099a
11 lines
192 B
Makefile
Executable file
11 lines
192 B
Makefile
Executable file
OBJ = Test.o
|
|
BIN = main-gcc
|
|
CXXFLAGS = -I../../include -Wall -O2 -DNDEBUG
|
|
LIBS = -L../../lib -lloki
|
|
|
|
$(BIN): $(OBJ)
|
|
$(CXX) -o $(BIN) $(OBJ) $(LIBS)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f $(OBJ) $(BIN)
|