mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
Reviewed by Ed Burns
Added MOZ_DEBUG flags and include stmts. to copy dll's to bin/components dir.
This commit is contained in:
parent
a73b3fd4fb
commit
14da8d77d9
@ -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)
|
||||
|
@ -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/.
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user