summaryrefslogtreecommitdiff
path: root/Makefile.win
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2004-03-07 02:48:59 +0000
committerIan C <ianc@noddybox.co.uk>2004-03-07 02:48:59 +0000
commitface9be5bea3bc3026621fee87a7a7c495ea69e5 (patch)
tree70ef8fc5fc21d8c6ec79c594968e3b1b9e17c2af /Makefile.win
parent85ddc980e0b55191a91d129f4c0bedd2057387e2 (diff)
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'Makefile.win')
-rw-r--r--Makefile.win29
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile.win b/Makefile.win
new file mode 100644
index 0000000..9a21bc9
--- /dev/null
+++ b/Makefile.win
@@ -0,0 +1,29 @@
+# Project: SioCheck
+# Makefile created by Dev-C++ 4.9.8.0
+
+CPP = g++.exe
+CC = gcc.exe
+WINDRES = windres.exe
+RES =
+OBJ = main.o $(RES)
+LINKOBJ = main.o $(RES)
+LIBS = -L"C:/Dev-Cpp/lib"
+INCS = -I"C:/Dev-Cpp/include"
+CXXINCS = -I"C:/Dev-Cpp/include/c++" -I"C:/Dev-Cpp/include/c++/mingw32" -I"C:/Dev-Cpp/include/c++/backward" -I"C:/Dev-Cpp/include"
+BIN = SioCheck.exe
+CXXFLAGS = $(CXXINCS)
+CFLAGS = $(INCS)
+
+.PHONY: all all-before all-after clean clean-custom
+
+all: all-before SioCheck.exe all-after
+
+
+clean: clean-custom
+ rm -f $(OBJ) $(BIN)
+
+$(BIN): $(LINKOBJ)
+ $(CC) $(LINKOBJ) -o "SioCheck.exe" $(LIBS)
+
+main.o: main.c
+ $(CC) -c main.c -o main.o $(CFLAGS)