Browse Source

rename VAR and not sure why but order is important

pull/590/head
Willy De la Court 7 months ago
parent
commit
7d72d8c347
  1. 12
      Source/Images/Makefile

12
Source/Images/Makefile

@ -36,16 +36,18 @@ OBJECTS += $(HD1KIMGS) $(HD1KXIMGS) $(HD1KPREFIX)
# OBJECTS =
# add base images used in *.def files
BASEIMG = $(shell grep -vEh "^\#" *.def)
BASEIMG := $(addprefix hd512_,$(BASEIMG)) $(addprefix hd1k_,$(BASEIMG))
BASEIMG := $(addsuffix .img,$(BASEIMG))
OBJECTS += $(BASEIMG)
TEMP = $(wildcard *.def)
TEMP := $(addprefix hd512_,$(TEMP)) $(addprefix hd1k_,$(TEMP))
TEMP := $(TEMP:.def=.img)
OBJECTS += $(TEMP)
TEMP2 = $(shell grep -vEh "^\#" *.def)
TEMP2 := $(addprefix hd512_,$(TEMP2)) $(addprefix hd1k_,$(TEMP2))
TEMP2 := $(addsuffix .img,$(TEMP2))
OBJECTS += $(TEMP2)
OTHERS = blank144 blankhd512 blankhd1k *.cat

Loading…
Cancel
Save