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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
7 additions and
0 deletions
-
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) |
|
|
|
|