Removed outdated win32.mak

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6947 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-06-30 11:15:51 +00:00
parent 2025d1435a
commit b371cbb39e
2 changed files with 0 additions and 84 deletions

View file

@ -8,5 +8,4 @@ drivers/*.[chS]
export/*.h
include/*.h
include/sys/*.h
win32.mak
SOURCES

View file

@ -1,83 +0,0 @@
# __________ __ ___.
# 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
TOOLSDIR = ../tools
INCLUDES=-Iinclude -I. -Icommon -Idrivers -Iexport
# Pick a target to build for
TARGET=-DARCHOS_RECORDER=1
ifdef RECORDER
TARGET=-DARCHOS_RECORDER=1
else
ifdef PLAYER
TARGET=-DARCHOS_PLAYER=1
else
ifdef PLAYER_OLD
TARGET=-DARCHOS_PLAYER_OLD=1
endif
endif
endif
# store output files in this directory:
OBJDIR = .
# use propfonts?
ifdef PROPFONTS
CFLAGS = -W -Wall -O -m1 -nostdlib -Wstrict-prototypes $(INCLUDES) $(TARGET) -DLCD_PROPFONTS
else
CFLAGS = -W -Wall -O -m1 -nostdlib -Wstrict-prototypes $(INCLUDES) $(TARGET)
endif
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 $(OBJDIR)/bitswap.o
DEPS:=.deps
DEPDIRS:=$(DEPS) $(DEPS)/drivers $(DEPS)/common $(DEPS)/malloc
ifndef PLAYER
ifndef PLAYER_OLD
OBJS += $(OBJDIR)/sysfont.o
endif
endif
OUTPUT = $(OBJDIR)/librockbox.a
$(OUTPUT): $(OBJS)
$(AR) ruv $@ $+
$(OBJDIR)/%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
$(OBJDIR)/%.o: %.S
$(CC) $(CFLAGS) -c $< -o $@
$(OBJDIR)/sysfont.o: fonts/clR6x8.bdf
$(TOOLSDIR)/convbdf -c -o $(OBJDIR)/sysfont.c $<
$(CC) $(CFLAGS) -c $(OBJDIR)/sysfont.c -o $@
clean:
-rm -f $(OBJS) $(OUTPUT) sysfont.c
# Special targets
$(OBJDIR)/thread.o: thread.c export/thread.h
$(CC) -c -O -fomit-frame-pointer $(CFLAGS) $< -o $@
-include $(SRC:%.c=$(OBJDIR)/$(DEPS)/%.d)