remove mingw specific makefiles

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@256 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2005-09-24 23:08:20 +00:00
parent 9429d59bd4
commit 4043617da0
7 changed files with 0 additions and 226 deletions

View file

@ -1,31 +0,0 @@
CPP = g++
CC = gcc
OBJ = tmp\main.o
LINKOBJ = tmp\main.o
CXXINCS = -I./../../include
BIN = main-mingw.exe
CXXFLAGS = $(CXXINCS) -W0 -O2 -DNDEBUG
RM = rm -f
CHK_DIR_EXISTS= if not exist
MKDIR = mkdir
.PHONY: all all-before all-after clean clean-custom
all: all-before check_tmp main-mingw.exe all-after
clean: clean-custom
${RM} $(OBJ) $(BIN)
$(BIN): $(OBJ)
$(CPP) $(LINKOBJ) -o main-mingw.exe $(LIBS)
check_tmp:
@$(CHK_DIR_EXISTS) "tmp\" $(MKDIR) "tmp"
tmp\main.o: main.cpp
$(CPP) -c main.cpp -o tmp\main.o $(CXXFLAGS)