simulator: fix missing background bmp on MacOS

Change-Id: I6ad8b78519764dad53d8353d14432f791a7a85a5
This commit is contained in:
Christian Soffke 2024-12-17 12:03:33 +01:00
parent 33c0c9efae
commit cede12f197

View file

@ -21,18 +21,14 @@ SIMLIB = $(BUILDDIR)/uisimulator/libuisimulator.a
ifeq (yes,$(APPLICATION))
UIBMP=
else
ifeq ($(UNAME), Darwin)
UIBMP=
else
UIBMP=$(BUILDDIR)/UI256.bmp
endif
endif
.SECONDEXPANSION: # $$(OBJ) is not populated until after this
$(SIMLIB): $$(SIMOBJ) $(UIBMP)
$(SILENT)$(shell rm -f $@)
$(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null
$(call PRINTS,AR $(@F))$(AR) rcs $@ $(SIMOBJ) >/dev/null
$(BUILDDIR)/$(BINARY): $$(OBJ) $(FIRMLIB) $(VOICESPEEXLIB) $(CORE_LIBS) $(SIMLIB)
ifeq ($(UNAME), Darwin)