summaryrefslogtreecommitdiff
path: root/firmware/test/wavey/Makefile.win32
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-08 15:46:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-08 15:46:17 +0000
commit8463a2bbd3f64ad47f5d30ca9a1957c170f48ec1 (patch)
tree6ead4078a20990b62179a28eb4003d792bf93535 /firmware/test/wavey/Makefile.win32
parent5c7d66890c5ba05402c85d47dd87f6abfd4df7d9 (diff)
downloadrockbox-8463a2bbd3f64ad47f5d30ca9a1957c170f48ec1.tar.gz
rockbox-8463a2bbd3f64ad47f5d30ca9a1957c170f48ec1.zip
ancient experimental test code not used for 2+ years, removed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4212 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/test/wavey/Makefile.win32')
-rw-r--r--firmware/test/wavey/Makefile.win3243
1 files changed, 0 insertions, 43 deletions
diff --git a/firmware/test/wavey/Makefile.win32 b/firmware/test/wavey/Makefile.win32
deleted file mode 100644
index 8edd91aa8e..0000000000
--- a/firmware/test/wavey/Makefile.win32
+++ /dev/null
@@ -1,43 +0,0 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9
10# Pick a target to build for
11TARGET = -DARCHOS_PLAYER=1
12#TARGET = -DARCHOS_PLAYER_OLD=1
13#TARGET = -DARCHOS_RECORDER=1
14
15CC = gcc
16LD = ld
17AR = ar
18AS = as
19OC = objcopy
20scramble = scramble-win32
21DEFINES = -DCRT_DISPLAY
22INCLUDES=-I. -Icommon -Idrivers
23TARGET_OPTIONS =
24CFLAGS = -Os -Wall ${TARGET_OPTIONS} -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns $(INCLUDES) $(DEFINES) $(TARGET)
25AFLAGS += -small -relax
26
27SRC := playlist.c settings.c panic.c disk.c debug.c harness.c
28OBJS := $(SRC:%.c=%.o)
29
30%.o: %.s
31 $(CC) -o $@ $(CFLAGS) $(INCLUDES) $(DEFS) -c $<
32
33all : rockbox-win32.exe
34
35rockbox-win32.exe: $(OBJS)
36 $(CC) -o rockbox-win32.exe ${OBJS}
37
38dist:
39 tar czvf dist.tar.gz Makefile main.c start.s app.lds
40
41clean:
42 -rm -f *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~
43