Reviewed by Ed Burns

Added MOZ_DEBUG flags and include stmts. to copy dll's to bin/components
dir.
This commit is contained in:
rpallath%eng.sun.com 2000-09-05 20:58:42 +00:00
parent a73b3fd4fb
commit 14da8d77d9
2 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,11 @@ compile: objdir del_cmd $(OBJS)
link:
@link /NOLOGO /DEBUG $(LD_FLAGS) $(LIBS) $(OBJS) /DLL /OUT:$(OBJ_DIR)\$(DLL).dll
@cp obj/$(DLL).dll $(TOP_DIR)/build/bin
!if defined(MOZ_DEBUG)
@cp obj/$(DLL).dll $(TOP_DIR)/../../../dist/win32_d.obj/bin/components
!else
@cp obj/$(DLL).dll $(TOP_DIR)/../../../dist/win32_o.obj/bin/components
!endif
make_depends: Makefile.win
!if !exist(depend.mak)

View File

@ -61,6 +61,7 @@ link:
$(CC) $(LD_FLAGS_GCC) $(LIBS) $(OBJS) $(LD_PATH) -o $(OBJ_DIR)/lib$(DLL).so; \
fi;
@cp obj/lib$(DLL).so $(TOP_DIR)/build/bin/.
@cp obj/lib$(DLL).so $(TOP_DIR)/../../../dist/bin/components/.