mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2024-12-29 13:03:36 +01:00
Not enough, apparently.
This commit is contained in:
parent
54fe9e7ccd
commit
a4b3aaa7da
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-lib-spec = build/display_font_system.bmp.o
|
||||
|
||||
# Configuration files
|
||||
# Configuration files, require them only if we're not cleaning
|
||||
config = gcc.cfg
|
||||
ifeq "$(filter clean mrproper distclean,$(MAKECMDGOALS))" ""
|
||||
ifeq ($(wildcard $(config)),)
|
||||
$(error "Configuration files are missing. Did you ./configure ?")
|
||||
endif
|
||||
endif
|
||||
|
||||
# Target folder
|
||||
# Target folder, require it only if we want to install
|
||||
ifneq "$(filter install,$(MAKECMDGOALS))" ""
|
||||
folder := $(shell fxsdk --folder)
|
||||
ifndef folder
|
||||
$(error "Could not get the fxSDK storage folder. Did you install fxSDK \
|
||||
properly?")
|
||||
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