summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2005-01-24 09:28:31 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2005-01-24 09:28:31 (GMT)
commitb249d4382cb288336dcbceb3c476eff12259bee1 (patch)
tree03667562a9c9f7c088d1d46b7ca723c2b6749d97
parent58ae86cd9f37c5dd30dd1dd9271f4344295158cf (diff)
downloadTASS-b249d4382cb288336dcbceb3c476eff12259bee1.zip
TASS-b249d4382cb288336dcbceb3c476eff12259bee1.tar.gz
TASS-b249d4382cb288336dcbceb3c476eff12259bee1.tar.bz2
-rw-r--r--Tools/rawint/makefile.win8
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/rawint/makefile.win b/Tools/rawint/makefile.win
index abbcdde..39e1577 100644
--- a/Tools/rawint/makefile.win
+++ b/Tools/rawint/makefile.win
@@ -1,4 +1,4 @@
-# Project: bmpint
+# Project: rawint
# Makefile created by Dev-C++ 4.9.9.0
CPP = g++.exe
@@ -10,20 +10,20 @@ LINKOBJ = src/main.o $(RES)
LIBS = -L"C:/Dev-Cpp/lib"
INCS = -I"C:/Dev-Cpp/include"
CXXINCS = -I"C:/Dev-Cpp/include/c++/3.3.1" -I"C:/Dev-Cpp/include/c++/3.3.1/mingw32" -I"C:/Dev-Cpp/include/c++/3.3.1/backward" -I"C:/Dev-Cpp/lib/gcc-lib/mingw32/3.3.1/include" -I"C:/Dev-Cpp/include"
-BIN = bmpint.exe
+BIN = rawint.exe
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS)
.PHONY: all all-before all-after clean clean-custom
-all: all-before bmpint.exe all-after
+all: all-before rawint.exe all-after
clean: clean-custom
rm -f $(OBJ) $(BIN)
$(BIN): $(OBJ)
- $(CC) $(LINKOBJ) -o "bmpint.exe" $(LIBS)
+ $(CC) $(LINKOBJ) -o "rawint.exe" $(LIBS)
src/main.o: src/main.c
$(CC) -c src/main.c -o src/main.o $(CFLAGS)