Skip to content

Commit a4002a9

Browse files
Freaking windows
1 parent 51d2e41 commit a4002a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/core_makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ ICON_ASM := iconc.src
8585
F_STARTUP := $(call NATIVEPATH,$(CEDEV)/lib/cstartup.src)
8686
F_LAUNCHER := $(call NATIVEPATH,$(CEDEV)/lib/libheader.src)
8787
F_CLEANUP := $(call NATIVEPATH,$(CEDEV)/lib/ccleanup.src)
88-
F_ICON := $(call NATIVEPATH,$(OBJDIR)/$(ICON_ASM))
88+
F_ICON := $(OBJDIR)/$(ICON_ASM)
8989

9090
# set use cases
9191
U_CLEANUP = 0
@@ -116,8 +116,8 @@ LINK_LIBLOAD := $(call NATIVEPATH,$(wildcard $(CEDEV)/lib/libload/*.asm))
116116

117117
# check if there is an icon present that we can convert; if so, generate a recipe to build it properly
118118
ifneq ("$(wildcard $(ICONPNG))","")
119-
LINK_ICON := $(call NATIVEPATH,$(OBJDIR)/$(ICON_ASM))
120-
ICON_CONV := $(PG) -c $(ICONPNG)$(comma)$(LINK_ICON)$(comma)$(DESCRIPTION)
119+
LINK_ICON := $(F_ICON)
120+
ICON_CONV := $(PG) -c $(ICONPNG)$(comma)$(call NATIVEPATH,$(LINK_ICON))$(comma)$(DESCRIPTION)
121121
U_ICON = 1
122122
endif
123123

@@ -232,4 +232,4 @@ gfx:
232232
version:
233233
@echo C SDK Version $(VERSION)
234234

235-
.PHONY: all clean version gfx dirs
235+
.PHONY: all clean version gfx dirs

0 commit comments

Comments
 (0)