summaryrefslogtreecommitdiff
path: root/src/Makefile.W32
diff options
context:
space:
mode:
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: