Fix status string

This commit is contained in:
Michael Theall 2016-01-15 18:43:45 -06:00
parent 3d156e4042
commit 74c7e00f14
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard
CFLAGS := -g -Wall -O3 -mword-relocations \ CFLAGS := -g -Wall -O3 -mword-relocations \
$(ARCH) \ $(ARCH) \
-DSTATUS_STRING="\"ftbrony v1.2\"" -DSTATUS_STRING="\"ftbrony v2.0\""
CFLAGS += $(INCLUDE) -DARM11 -D_3DS CFLAGS += $(INCLUDE) -DARM11 -D_3DS

View File

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