mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-01 06:23:35 +01:00
Not enough, apparently.
This commit is contained in:
parent
79b78b5345
commit
0f4b589240
4 changed files with 6 additions and 2 deletions
8
Makefile
8
Makefile
|
@ -47,18 +47,22 @@ demo-cflags = -m3 -mb -nostdlib -I include -ffreestanding -std=c11 -Os \
|
||||||
obj-std-spec =
|
obj-std-spec =
|
||||||
obj-lib-spec = build/display_font_system.bmp.o
|
obj-lib-spec = build/display_font_system.bmp.o
|
||||||
|
|
||||||
# Configuration files
|
# Configuration files, require them only if we're not cleaning
|
||||||
config = gcc.cfg
|
config = gcc.cfg
|
||||||
|
ifeq "$(filter clean mrproper distclean,$(MAKECMDGOALS))" ""
|
||||||
ifeq ($(wildcard $(config)),)
|
ifeq ($(wildcard $(config)),)
|
||||||
$(error "Configuration files are missing. Did you ./configure ?")
|
$(error "Configuration files are missing. Did you ./configure ?")
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
# Target folder
|
# Target folder, require it only if we want to install
|
||||||
|
ifneq "$(filter install,$(MAKECMDGOALS))" ""
|
||||||
folder := $(shell fxsdk --folder)
|
folder := $(shell fxsdk --folder)
|
||||||
ifndef folder
|
ifndef folder
|
||||||
$(error "Could not get the fxSDK storage folder. Did you install fxSDK \
|
$(error "Could not get the fxSDK storage folder. Did you install fxSDK \
|
||||||
properly?")
|
properly?")
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
BIN
gscreen.bmp
BIN
gscreen.bmp
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
BIN
gscreend.bmp
BIN
gscreend.bmp
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
BIN
gscreenl.bmp
BIN
gscreenl.bmp
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
Loading…
Reference in a new issue