patch Makefiles, Thanks to Lukas Fittl

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@406 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-01-04 23:35:09 +00:00
parent 7438aec6c3
commit f717540760
16 changed files with 164 additions and 424 deletions

11
test/Function/Makefile Normal file
View file

@ -0,0 +1,11 @@
OBJ = FunctionTest.o
BIN = main-gcc
CXXFLAGS = -I../../include -Wall -O2
LIBS = -L../../lib -lloki
$(BIN): $(OBJ)
$(CXX) -o $(BIN) $(OBJ) $(LIBS)
.PHONY: clean
clean:
rm -f $(OBJ) $(BIN)