Browse Source

Merge pull request #590 from wdl1908/master

Make sure the images in *.def files are build as dependencies
pull/593/head
Wayne Warthen 7 months ago
committed by GitHub
parent
commit
67b89d2a9c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      Source/Images/Makefile

7
Source/Images/Makefile

@ -36,6 +36,13 @@ 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)

Loading…
Cancel
Save