From b371cbb39ef6a1f9da32a9d8f7d6f12b1d8077b6 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Thu, 30 Jun 2005 11:15:51 +0000 Subject: Removed outdated win32.mak git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6947 a1c6a512-1295-4272-9138-f99709370657 --- firmware/FILES | 1 - firmware/win32.mak | 83 ------------------------------------------------------ 2 files changed, 84 deletions(-) delete mode 100644 firmware/win32.mak diff --git a/firmware/FILES b/firmware/FILES index 77ce07706f..309549341b 100644 --- a/firmware/FILES +++ b/firmware/FILES @@ -8,5 +8,4 @@ drivers/*.[chS] export/*.h include/*.h include/sys/*.h -win32.mak SOURCES diff --git a/firmware/win32.mak b/firmware/win32.mak deleted file mode 100644 index 80165c2c81..0000000000 --- a/firmware/win32.mak +++ /dev/null @@ -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) -- cgit v1.2.3