Loki/test/Singleton/Makefile
lfittl a36bcf0b79 - Enabled -Wpadded, -Wsign-compare, -Wconversion, -Wpointer-arith (gcc)
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@501 7ec92016-0320-0410-acc4-a06ded1c099a
2006-01-20 16:07:58 +00:00

12 lines
401 B
Makefile

BIN1 = DeletableSingleton
BIN2 = Dependencies
BIN3 = Phoenix
CXXFLAGS = -Wall -Wold-style-cast -Wundef -Wpadded -Wsign-compare -Wconversion -Wpointer-arith -pedantic -O2
CPPFLAGS = -I../../include -DNDEBUG
LDFLAGS = -L../../lib
LDLIBS = -lloki
.PHONY: build clean
build: $(BIN1) $(BIN2) $(BIN3)
clean:
rm -f $(BIN1) $(BIN2) $(BIN3) $(BIN1).exe $(BIN1).o $(BIN2).exe $(BIN2).o $(BIN3).exe $(BIN3).o