diff --git a/firmware/win32.mak b/firmware/win32.mak new file mode 100644 index 0000000000..12f145c899 --- /dev/null +++ b/firmware/win32.mak @@ -0,0 +1,59 @@ +# __________ __ ___. +# Open \______ \ ____ ____ | | _\_ |__ _______ ___ +# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +# \/ \/ \/ \/ \/ +# $Id$ +# + +CC = sh-elf-gcc +LD = sh-elf-ld +AR = sh-elf-ar +AS = sh-elf-as +OC = sh-elf-objcopy + +INCLUDES=-Iinclude -I. -Icommon -Idrivers + +# Pick a target to build for +#TARGET = -DARCHOS_PLAYER=1 +#TARGET = -DARCHOS_PLAYER_OLD=1 +TARGET = -DARCHOS_RECORDER=1 + +# store output files in this directory: +OBJDIR = . + +CFLAGS = -W -Wall -O -m1 -nostdlib -Wstrict-prototypes $(INCLUDES) $(TARGET) -DLCD_PROPFONTS + +ifdef DEBUG +CFLAGS += -g -DDEBUG +else +CFLAGS += -fomit-frame-pointer -fschedule-insns +endif + +SRC := $(wildcard drivers/*.c common/*.c malloc/*.c *.c) + +OBJS := $(SRC:%.c=$(OBJDIR)/%.o) $(OBJDIR)/crt0.o +DEPS:=.deps +DEPDIRS:=$(DEPS) $(DEPS)/drivers $(DEPS)/common $(DEPS)/malloc + +OUTPUT = $(OBJDIR)/librockbox.a + +$(OUTPUT): $(OBJS) + $(AR) ruv $@ $+ + +$(OBJDIR)/%.o: %.c + $(CC) $(CFLAGS) -c $< -o $@ + +$(OBJDIR)/%.o: %.S + $(CC) $(CFLAGS) -c $< -o $@ + +clean: + rm -f $(OBJS) $(OUTPUT) + rm -rf $(OBJDIR)/$(DEPS) + +# Special targets +$(OBJDIR)/thread.o: thread.c thread.h + $(CC) -c -O -fomit-frame-pointer $(CFLAGS) $< -o $@ + +-include $(SRC:%.c=$(OBJDIR)/$(DEPS)/%.d)