forked from len0rd/rockbox
win32 makefile
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1785 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9ed9765bfe
commit
8db1feb377
1 changed files with 59 additions and 0 deletions
59
firmware/win32.mak
Normal file
59
firmware/win32.mak
Normal file
|
|
@ -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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue