summaryrefslogtreecommitdiff
path: root/src/Makefile.W32
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-06 17:49:38 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-06 17:49:38 +0100
commit8f24f0e6aa487c78c24e169b804693b6d585a9c3 (patch)
tree53e796c8dd3cd1a648cd6222689574fcbfc2e3aa /src/Makefile.W32
parent0722536fcef8559b01728235b4a580991766a3cf (diff)
downloadwolfbones-8f24f0e6aa487c78c24e169b804693b6d585a9c3.tar.gz
wolfbones-8f24f0e6aa487c78c24e169b804693b6d585a9c3.tar.bz2
first message resource for the event logger on Windows
Diffstat (limited to 'src/Makefile.W32')
-rw-r--r--src/Makefile.W3214
1 files changed, 11 insertions, 3 deletions
diff --git a/src/Makefile.W32 b/src/Makefile.W32
index fa4c824..472fc4a 100644
--- a/src/Makefile.W32
+++ b/src/Makefile.W32
@@ -8,7 +8,9 @@ INCLUDE_DIRS = \
BINS =
-LIBRARIES = wolf.lib
+LIBRARIES = \
+ wolf.lib \
+ wolfmsg.dll
PORT_OBJS = \
port\string.obj \
@@ -26,12 +28,18 @@ local_all: $(LIBRARIES)
!INCLUDE $(TOPDIR)\makefiles\nmake\sub.mk
wolf.lib: $(OBJS)
- link.exe /lib /nologo /out:$@ $(LDFLAGS) $(LIBS) $?
+ $(LINK) /lib /out:$@ $(LDFLAGS) $(LIBS) $?
+
+wolfmsg.dll: wolfmsg.res
+ $(LINK) /dll /noentry /out:$@ $?
+
+wolfmsg.rc: wolfmsg.mc
+wolfmsg.res: wolfmsg.rc
local_all:
local_clean:
- @-erase $(LIBRARIES) 2>NUL
+ @-erase $(LIBRARIES) wolfmsg.h 2>NUL
local_distclean: