mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2024-12-28 20:43:36 +01:00
Fixed some Makefile dependencies.
This commit is contained in:
parent
eedec2b124
commit
28748a820c
2 changed files with 10 additions and 8 deletions
12
Makefile
12
Makefile
|
@ -119,11 +119,14 @@ endef
|
||||||
|
|
||||||
# Generic rules
|
# Generic rules
|
||||||
|
|
||||||
all: $(config) build $(target-std) $(target-lib) $(target-g1a)
|
all: $(config) $(target-std) $(target-lib) $(target-g1a)
|
||||||
@ printf '\e[32;1mmsg \u00bb\e[0m All done!\n'
|
@ printf '\e[32;1mmsg \u00bb\e[0m All done!\n'
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@ mkdir -p $@
|
$(if $(VERBOSE),,@ printf '\e[35;1mdir \u00bb\e[0m mkdir $@\n')
|
||||||
|
$(if $(VERBOSE),,@) mkdir -p $@
|
||||||
|
|
||||||
|
$(obj-std) $(obj-lib) $(demo-obj): | build
|
||||||
|
|
||||||
$(target-std): $(config) $(obj-std)
|
$(target-std): $(config) $(obj-std)
|
||||||
$(if $(VERBOSE),,@ printf '\e[35;1mlib \u00bb\e[0m ar $@\n')
|
$(if $(VERBOSE),,@ printf '\e[35;1mlib \u00bb\e[0m ar $@\n')
|
||||||
|
@ -192,11 +195,10 @@ build/demo_%.bmp.o: demo/resources/%.bmp
|
||||||
#---
|
#---
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@ rm -rf build/*
|
@ rm -rf build
|
||||||
|
|
||||||
mrproper: clean
|
mrproper: clean
|
||||||
@ rm -f $(target-g1a) $(target-lib) $(target-std)
|
@ rm -f $(target-g1a) $(target-lib) $(target-std)
|
||||||
@ rm -rf build
|
|
||||||
@ rm -f $(config)
|
@ rm -f $(config)
|
||||||
|
|
||||||
distclean: mrproper
|
distclean: mrproper
|
||||||
|
@ -205,4 +207,4 @@ install:
|
||||||
p7 send -f $(target-g1a)
|
p7 send -f $(target-g1a)
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all clean mrproper distclean
|
.PHONY: all clean mrproper distclean install help
|
||||||
|
|
|
@ -37,13 +37,13 @@ void gray_stop(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
gray_lightVRAM()
|
gray_lightVRAM()
|
||||||
Returns the module's gray vram address.
|
Returns the module's light gray vram address.
|
||||||
*/
|
*/
|
||||||
void *gray_lightVRAM(void);
|
void *gray_lightVRAM(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
gray_lightVRAM()
|
gray_darkVRAM()
|
||||||
Returns the module's dark vram address.
|
Returns the module's dark gray vram address.
|
||||||
*/
|
*/
|
||||||
void *gray_darkVRAM(void);
|
void *gray_darkVRAM(void);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue