mirror of
https://github.com/jeremysrand/Apple2GSBuildPipeline.git
synced 2024-12-02 20:49:54 +00:00
Add support for rlint to optionally check resources during the build.
This commit is contained in:
parent
503671561a
commit
bce9f4343d
7
Makefile
7
Makefile
@ -43,6 +43,13 @@ CFLAGS+=
|
|||||||
# Add any arguments you want passed to the resource compiler to this variable:
|
# Add any arguments you want passed to the resource compiler to this variable:
|
||||||
REZFLAGS+=
|
REZFLAGS+=
|
||||||
|
|
||||||
|
# Uncomment the following line if you have installed rlint as found here:
|
||||||
|
# https://github.com/ksherlock/rlint/releases
|
||||||
|
# Assuming that it is in the path that ORCA searches (the Utilities directory is
|
||||||
|
# probably a good choice), you can just leave the value unchanged. If you have
|
||||||
|
# put the rlint somewhere weird, you can set this to the correct path
|
||||||
|
# RLINT_PATH=rlint
|
||||||
|
|
||||||
# Add any arguments you want passed to the macro generator to this variable:
|
# Add any arguments you want passed to the macro generator to this variable:
|
||||||
MACGENFLAGS+=
|
MACGENFLAGS+=
|
||||||
|
|
||||||
|
@ -147,6 +147,9 @@ executeShell: all
|
|||||||
|
|
||||||
%.r: %.rez
|
%.r: %.rez
|
||||||
$(REZ) $< $(REZFLAGS)
|
$(REZ) $< $(REZFLAGS)
|
||||||
|
ifneq ($(RLINT_PATH),)
|
||||||
|
$(ORCA) $(RLINT_PATH) $@
|
||||||
|
endif
|
||||||
|
|
||||||
$(OBJS): Makefile
|
$(OBJS): Makefile
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user