summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tools/Makefile.win3225
-rw-r--r--version.log6
2 files changed, 30 insertions, 1 deletions
diff --git a/src/tools/Makefile.win32 b/src/tools/Makefile.win32
new file mode 100644
index 000000000..2a60490bf
--- /dev/null
+++ b/src/tools/Makefile.win32
@@ -0,0 +1,25 @@
+include ../../Makefile.inc.win32
+
+SRCS=anopesmtp.c epona2anope.c db-merger.c
+OBJECTS= $(SRCS:.c=.exe)
+CFLAGS=$(CFLAGS) /I"../../include"
+LFLAGS=/link wsock32.lib $(LIBS) $(LFLAGS)
+
+all: $(OBJECTS)
+
+distclean: clean spotless
+
+.c.exe:
+ $(CC) $(CFLAGS) $< $(LFLAGS)
+
+clean:
+ -@del *.obj
+
+spotless: clean
+ -@del *.exe *.lib *.exp
+
+install: FRC
+ -@mkdir ..\..\$(DATDEST)\tools
+ -@copy *.exe ..\..\$(DATDEST)\tools
+
+FRC:
diff --git a/version.log b/version.log
index 14e1c6e5f..bbc0c8fbe 100644
--- a/version.log
+++ b/version.log
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="8"
-VERSION_BUILD="687"
+VERSION_BUILD="707"
# $Log$
#
+# BUILD : 1.7.8 (707)
+# BUGS :
+# NOTES : Added src/tools/Makefile.win32, which was missing since last commit
+#
# BUILD : 1.7.8 (687)
# BUGS : N/A
# NOTES : Another heinz makefile.win32 patch :)