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

@@ -49,8 +49,8 @@ CPP_OBJS= $(CPP_FILES:.cpp=.obj)
all: test_libOggFLAC++.exe
test_libOggFLAC++.exe: $(C_OBJS) $(CPP_OBJS)
link.exe /libpath:"..\..\obj\lib" -out:../../obj/bin/$*.exe $(CPP_OBJS) $(C_OBJS) file_utils.lib libOggFLAC++.lib libOggFLAC.lib libFLAC.lib ogg_static.lib
link.exe /libpath:"..\..\obj\release\lib" -out:../../obj/release/bin/$*.exe $(CPP_OBJS) $(C_OBJS) grabbag_static.lib libOggFLAC++_static.lib libOggFLAC_static.lib libFLAC_static.lib ogg_static.lib
clean:
-del *.obj *.pch
-del ..\..\obj\bin\test_libOggFLAC++.exe
-del ..\..\obj\release\bin\test_libOggFLAC++.exe