summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-04-21 22:06:12 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-04-21 22:06:12 +0000
commit1acfd6b39d30a52c670263db50468590b8661f58 (patch)
treef5fd00e8bc5edc5b2934d8cfbfc48233d55ead85 /firmware/Makefile
parent78e6bb8ee25ed3215b010f402a0af849b7f7d25c (diff)
downloadrockbox-1acfd6b39d30a52c670263db50468590b8661f58.tar.gz
rockbox-1acfd6b39d30a52c670263db50468590b8661f58.zip
Alan's ATA code, or what's left of it after I have laid my grubby little hands
on it. :-) It compiles, but it probably doesn't work... Also, a stub for future kernel code. A sleep() and a dummy yield(), just so we can start to use them in other code. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@163 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index 636f48094a..22f342a259 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -27,6 +27,8 @@ AFLAGS += -small -relax
27SRC := $(wildcard *.c) 27SRC := $(wildcard *.c)
28OBJS := $(SRC:%.c=%.o) 28OBJS := $(SRC:%.c=%.o)
29 29
30OBJS := button.o chartables.o lcd.o led.o serial.o system.o ata.o kernel.o
31
30%.o: %.s 32%.o: %.s
31 $(CC) -o $@ $(CFLAGS) $(INCLUDES) $(DEFS) -c $< 33 $(CC) -o $@ $(CFLAGS) $(INCLUDES) $(DEFS) -c $<
32 34