Changeset 12258 in vbox for trunk/src/VBox/Frontends/VBoxSDL/Makefile.kmk
- Timestamp:
- Sep 9, 2008 3:01:02 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/Makefile.kmk
r12170 r12258 20 20 # 21 21 22 ifdef VBOX_SINGLE_MAKEFILE23 22 SUB_DEPTH = ../../../.. 24 else25 DEPTH ?= ../../../..26 SUB_DEPTH = ..27 endif28 23 include $(KBUILD_PATH)/subheader.kmk 29 24 if !defined(VBOX_WITH_HARDENING) || "$(KBUILD_TARGET)" == "darwin" # No hardened VBoxSDL on darwin. 30 25 31 26 # … … 33 28 # 34 29 ifdef VBOX_WITH_HARDENING 35 ifneq ($(KBUILD_TARGET),darwin) # No hardened VBoxSDL on darwin. 36 PROGRAMS += VBoxSDLHardened 37 DLLS += VBoxSDL 38 endif 30 PROGRAMS += VBoxSDLHardened 31 DLLS += VBoxSDL 39 32 else 40 33 PROGRAMS += VBoxSDL … … 124 117 125 118 119 # Convert the pnm-file to a byte array. 120 $$(PATH_VBoxSDL)/Ico64x01.h: $(PATH_ROOT)/src/VBox/Frontends/VBoxSDL/ico64x01.pnm $(VBOX_BIN2C) | $$(dir $$@) 121 $(call MSG_TOOL,bin2c,VBoxSDL,$<,$@) 122 $(QUIET)$(VBOX_BIN2C) Ico64x01 $< $@ 123 124 # Icon include file. 125 $$(PATH_VBoxSDL)/VBoxSDL-icon.rc: $(VBOX_WINDOWS_ICON_FILE) $(VBoxSDL_PATH)/Makefile.kmk | $$(dir $$@) 126 $(RM) -f $@ 127 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"' 128 129 130 126 131 # 127 132 # tstSDL … … 171 176 172 177 173 # generate rules 178 endif # !VBOX_WITH_HARDENING || "$(KBUILD_TARGET)" != "darwin" 174 179 include $(KBUILD_PATH)/subfooter.kmk 175 180 176 181 177 ifdef PATH_VBoxSDL178 # Convert the pnm-file to a byte array.179 $(PATH_VBoxSDL)/Ico64x01.h: $(PATH_ROOT)/src/VBox/Frontends/VBoxSDL/ico64x01.pnm $(VBOX_BIN2C) | $(call DIRDEP,$(PATH_VBoxSDL))180 $(call MSG_TOOL,bin2c,VBoxSDL,$<,$@)181 $(QUIET)$(VBOX_BIN2C) Ico64x01 $< $@182 183 # Icon include file.184 $(PATH_VBoxSDL)/VBoxSDL-icon.rc: $(VBOX_WINDOWS_ICON_FILE) $(VBoxSDL_PATH)/Makefile.kmk | $$(call DIRDEP,$$(@D))185 $(RM) -f $@186 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"'187 endif
Note:
See TracChangeset
for help on using the changeset viewer.