summaryrefslogtreecommitdiff
path: root/ticpp/Makefile.W32
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2014-06-15 22:43:14 +0200
committerAndreas Baumann <abaumann@yahoo.com>2014-06-15 22:43:14 +0200
commitce77513807f47bc7af59c8320932d3348aeb99ea (patch)
tree495393883edf95519a4faf60342194257611ef62 /ticpp/Makefile.W32
parent39ee887e91e0c7920193f7a519693b70f7de5a99 (diff)
downloadcrawler-ce77513807f47bc7af59c8320932d3348aeb99ea.tar.gz
crawler-ce77513807f47bc7af59c8320932d3348aeb99ea.tar.bz2
added tinyxml and ticpp
Diffstat (limited to 'ticpp/Makefile.W32')
-rwxr-xr-xticpp/Makefile.W3241
1 files changed, 41 insertions, 0 deletions
diff --git a/ticpp/Makefile.W32 b/ticpp/Makefile.W32
new file mode 100755
index 0000000..87630dc
--- /dev/null
+++ b/ticpp/Makefile.W32
@@ -0,0 +1,41 @@
+TOPDIR = ..
+
+SUBDIRS =
+
+!INCLUDE $(TOPDIR)\makefiles\nmake\platform.mk
+
+INCLUDE_CXXFLAGS = \
+ /D_WIN32_WINNT=0x504 \
+ /DTIXML_USE_STL
+
+INCLUDE_DIRS = \
+ /I.
+
+INCLUDE_LDFLAGS = \
+
+INCLUDE_LIBS = \
+
+CPP_OBJS = \
+ tinystr.obj \
+ tinyxml.obj \
+ tinyxmlerror.obj \
+ tinyxmlparser.obj \
+ ticpp.obj
+
+STATIC_LIB = \
+ ticpp.lib
+
+all: $(CPP_OBJS) $(STATIC_LIB)
+
+!INCLUDE $(TOPDIR)\makefiles\nmake\sub.mk
+
+$(STATIC_LIB): $(CPP_OBJS)
+ $(LINK) /lib /nologo /out:$@ $(STATIC_LDFLAGS) $?
+
+local_all:
+
+local_clean:
+
+local_distclean:
+
+local_test: