summaryrefslogtreecommitdiff
path: root/src/Makefile.W32
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-26 21:35:14 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-26 21:35:14 +0100
commit70f0a6f2dcd66f3ec23f79220a0e08bcae8ba5ea (patch)
tree93580e86f18f5c2f580da611c56afc95044841e7 /src/Makefile.W32
parent501aa50d06744cadeed3adc46bde461ceb5696e8 (diff)
downloadwolfbones-70f0a6f2dcd66f3ec23f79220a0e08bcae8ba5ea.tar.gz
wolfbones-70f0a6f2dcd66f3ec23f79220a0e08bcae8ba5ea.tar.bz2
manual linking and running test_log.exe ok
Diffstat (limited to 'src/Makefile.W32')
-rw-r--r--src/Makefile.W3223
1 files changed, 5 insertions, 18 deletions
diff --git a/src/Makefile.W32 b/src/Makefile.W32
index a3b4242..7947efd 100644
--- a/src/Makefile.W32
+++ b/src/Makefile.W32
@@ -6,7 +6,7 @@ INCLUDE_DIRS = /I$(TOPDIR)\include\wolf /I.
BINS =
-LIBS = libwolf.a
+LIBS = wolf.lib
PORT_OBJS = \
port\string.obj
@@ -18,29 +18,16 @@ OBJS = \
$(PORT_OBJS) \
$(COMMON_OBJS)
-# compiler.mk
-LINK = link.exe
-CPP_LINK = link.exe
-
-all: $(OBJS) $(CPP_BINS)
+local_all: $(LIBS)
!INCLUDE $(TOPDIR)\makefiles\nmake\sub.mk
-test1.exe: test1.obj
-test2.exe: test2.obj
-test3.exe: test3.obj
-typeof1.exe: typeof1.obj
-test4.exe: test4.obj
+wolf.lib: $(OBJS)
+ link.exe /lib /nologo /out:$@ $?
local_all:
local_clean:
+ @erase $LIBS) 2>NUL
local_distclean:
-
-test: $(CPP_BINS)
- test1
- test2
- test3
- typeof1
- test4