summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/win32.mak21
1 files changed, 17 insertions, 4 deletions
diff --git a/firmware/win32.mak b/firmware/win32.mak
index d7280accf4..4be3d33170 100644
--- a/firmware/win32.mak
+++ b/firmware/win32.mak
@@ -16,14 +16,27 @@ OC = sh-elf-objcopy
16INCLUDES=-Iinclude -I. -Icommon -Idrivers 16INCLUDES=-Iinclude -I. -Icommon -Idrivers
17 17
18# Pick a target to build for 18# Pick a target to build for
19#TARGET = -DARCHOS_PLAYER=1 19ifdef RECORDER
20#TARGET = -DARCHOS_PLAYER_OLD=1 20 TARGET=-DARCHOS_RECORDER=1
21TARGET = -DARCHOS_RECORDER=1 21else
22 ifdef PLAYER
23 TARGET=-DARCHOS_PLAYER=1
24 else
25 ifdef PLAYER_OLD
26 TARGET=-DARCHOS_PLAYER_OLD=1
27 endif
28 endif
29endif
22 30
23# store output files in this directory: 31# store output files in this directory:
24OBJDIR = . 32OBJDIR = .
25 33
26CFLAGS = -W -Wall -O -m1 -nostdlib -Wstrict-prototypes $(INCLUDES) $(TARGET) -DLCD_PROPFONTS 34# use propfonts?
35ifdef PROPFONTS
36 CFLAGS = -W -Wall -O -m1 -nostdlib -Wstrict-prototypes $(INCLUDES) $(TARGET) -DLCD_PROPFONTS
37else
38 CFLAGS = -W -Wall -O -m1 -nostdlib -Wstrict-prototypes $(INCLUDES) $(TARGET)
39endif
27 40
28ifdef DEBUG 41ifdef DEBUG
29CFLAGS += -g -DDEBUG 42CFLAGS += -g -DDEBUG