summaryrefslogtreecommitdiff
path: root/wsutil/Makefile.nmake
diff options
context:
space:
mode:
Diffstat (limited to 'wsutil/Makefile.nmake')
-rw-r--r--wsutil/Makefile.nmake24
1 files changed, 12 insertions, 12 deletions
diff --git a/wsutil/Makefile.nmake b/wsutil/Makefile.nmake
index 14f94d49a0..64dbdb3d46 100644
--- a/wsutil/Makefile.nmake
+++ b/wsutil/Makefile.nmake
@@ -17,7 +17,7 @@ CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
.c.obj::
$(CC) $(CFLAGS) -Fd.\ -c $<
-# For use when making wsutil.dll
+# For use when making libwsutil.dll
libwsutil_LIBS = $(GLIB_LIBS) \
$(GNUTLS_LIBS)
@@ -30,16 +30,16 @@ OBJECTS = file_util.obj \
wsgetopt.obj \
ws_mempbrk_sse42.obj
-# For use when making wsutil.dll
-wsutil.lib: wsutil.dll
-wsutil.exp: wsutil.dll
+# For use when making libwsutil.dll
+libwsutil.lib: libwsutil.dll
+libwsutil.exp: libwsutil.dll
-wsutil.dll : $(OBJECTS) ..\image\libwsutil.res
- @echo Linking wsutil.dll
+libwsutil.dll : $(OBJECTS) ..\image\libwsutil.res
+ @echo Linking libwsutil.dll
$(link) $(dlllflags) $(conlibsdll) shell32.lib \
$(LOCAL_LDFLAGS) $(DLL_LDFLAGS) \
- /OUT:wsutil.dll \
- /IMPLIB:wsutil.lib \
+ /OUT:libwsutil.dll \
+ /IMPLIB:libwsutil.lib \
..\image\libwsutil.res \
$(OBJECTS) $(libwsutil_LIBS)
@@ -51,10 +51,10 @@ ws_version_info.obj: ..\version.h
clean:
rm -f $(OBJECTS) \
- wsutil.lib \
- wsutil.exp \
- wsutil.dll \
- wsutil.dll.manifest \
+ libwsutil.lib \
+ libwsutil.exp \
+ libwsutil.dll \
+ libwsutil.dll.manifest \
*.pdb *.sbr
distclean: clean