This commit is contained in:
Michael Theall 2016-01-16 16:33:45 -06:00
parent 2b836543f6
commit c79616d2ef
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ DATA := data
INCLUDES := include
APP_TITLE := Super ftBRONY II Turbo
APP_DESCRIPTION := v2.0
APP_DESCRIPTION := v2.1
APP_AUTHOR := mtheall
ICON := ftbrony.png
@ -44,7 +44,7 @@ ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard
CFLAGS := -g -Wall -O3 -mword-relocations \
$(ARCH) \
-DSTATUS_STRING="\"ftbrony v2.0\""
-DSTATUS_STRING="\"ftbrony v2.1\""
CFLAGS += $(INCLUDE) -DARM11 -D_3DS

View File

@ -3,7 +3,7 @@ TARGET := $(notdir $(CURDIR))
CFILES := $(wildcard source/*.c)
OFILES := $(patsubst source/%,build.linux/%,$(CFILES:.c=.o))
CFLAGS := -g -Wall -Iinclude -DSTATUS_STRING="\"ftpd v2.0\""
CFLAGS := -g -Wall -Iinclude -DSTATUS_STRING="\"ftpd v2.1\""
LDFLAGS :=
.PHONY: all clean