summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-06-30 11:15:51 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-06-30 11:15:51 +0000
commitb371cbb39ef6a1f9da32a9d8f7d6f12b1d8077b6 (patch)
treebcd442132ad281ca5d526ab480af4a9a0c0303ea /firmware
parent2025d1435a4b69dffcba08cf5f8d46810899b3bc (diff)
downloadrockbox-b371cbb39ef6a1f9da32a9d8f7d6f12b1d8077b6.tar.gz
rockbox-b371cbb39ef6a1f9da32a9d8f7d6f12b1d8077b6.zip
Removed outdated win32.mak
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6947 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/FILES1
-rw-r--r--firmware/win32.mak83
2 files changed, 0 insertions, 84 deletions
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)