get Makefile.vc system working again with new debug/release dirs and static/dynamic targets

This commit is contained in:
Josh Coalson
2002-11-22 07:50:26 +00:00
parent dfdc818a50
commit fcc7a6884d
18 changed files with 58 additions and 58 deletions

View File

@@ -15,11 +15,11 @@ C_FILES= \
OBJS= $(C_FILES:.c=.obj)
all: utf8.lib
all: utf8_static.lib
utf8.lib: $(UTF8_OBJS)
link.exe -lib /nodefaultlib -out:../../../obj/lib/$*.lib $(UTF8_OBJS)
utf8_static.lib: $(OBJS)
link.exe -lib /nodefaultlib -out:../../../obj/release/lib/$*.lib $(OBJS)
clean:
-del *.obj *.pch
-del ..\..\..\obj\lib\utf8.lib ..\..\..\obj\lib\utf8.pdb
-del ..\..\..\obj\release\lib\utf8_static.lib ..\..\..\obj\release\lib\utf8_static.pdb