summaryrefslogtreecommitdiff
path: root/src/Makefile.W32
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-26 14:14:31 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-26 14:14:31 +0100
commitbc3e79ea24a0fb7fda6f54a6f72e3a46943b1cec (patch)
treedc6c01c2d10cf12cc6ca9b0d3ed31b7759b9dcbd /src/Makefile.W32
parentfa74e6ffbd82c77e72497097e4e4366cd24e3b61 (diff)
downloadwolfbones-bc3e79ea24a0fb7fda6f54a6f72e3a46943b1cec.tar.gz
wolfbones-bc3e79ea24a0fb7fda6f54a6f72e3a46943b1cec.tar.bz2
temporary Win32 checkin
Diffstat (limited to 'src/Makefile.W32')
-rw-r--r--src/Makefile.W3238
1 files changed, 38 insertions, 0 deletions
diff --git a/src/Makefile.W32 b/src/Makefile.W32
new file mode 100644
index 0000000..ed789b0
--- /dev/null
+++ b/src/Makefile.W32
@@ -0,0 +1,38 @@
+TOPDIR = .
+
+SUBDIRS =
+
+INCLUDE_DIRS = /I$(TOPDIR)
+
+EXE=.exe
+
+CPP_BINS = test1$(EXE) test2$(EXE) test3$(EXE) typeof1$(EXE) test4$(EXE)
+
+OBJS = vector.obj
+
+# compiler.mk
+LINK = link.exe
+CPP_LINK = link.exe
+
+all: $(OBJS) $(CPP_BINS)
+
+!INCLUDE $(TOPDIR)\makefiles\nmake\sub.mk
+
+test1.exe: test1.obj
+test2.exe: test2.obj
+test3.exe: test3.obj
+typeof1.exe: typeof1.obj
+test4.exe: test4.obj
+
+local_all:
+
+local_clean:
+
+local_distclean:
+
+test: $(CPP_BINS)
+ test1
+ test2
+ test3
+ typeof1
+ test4