Loki/examples/Makefile.mingw
syntheticpp 5c10a8b01c add mingw make files
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@233 7ec92016-0320-0410-acc4-a06ded1c099a
2005-09-15 13:52:16 +00:00

26 lines
525 B
Text
Executable file

CPP = g++
CC = gcc
OBJ = Factory.o
LINKOBJ = Factory.o
CXXINCS = -I./../include -I./../include/loki
LIBS = -L../lib -lloki
BIN = main-mingw.exe
CXXFLAGS = $(CXXINCS) -Wall -pedantic -funroll-loops -fexpensive-optimizations -O2
RM = rm -f
.PHONY: all all-before all-after clean clean-custom
all: all-before main-mingw.exe all-after
clean: clean-custom
${RM} $(OBJ) $(BIN)
$(BIN): $(OBJ)
$(CPP) $(LINKOBJ) -o main-mingw.exe $(LIBS)
Factory.o: Factory.cpp
$(CPP) -c Factory.cpp -o Factory.o $(CXXFLAGS)