summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-04-23 11:44:06 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-04-23 11:44:06 +0000
commitb416a91980610ba56fc4a487bad8b9e257b136ab (patch)
treef03494e59f414dac254085443bd841b12ef5bd89
parent7de1fceaa001d585044a01f3e8ca66ef38939f46 (diff)
Added drivers directory
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@195 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index 6c8cbbde00..7992e20bc0 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -13,7 +13,7 @@ AR = sh-elf-ar
AS = sh-elf-as
OC = sh-elf-objcopy
-INCLUDES=-I. -Icommon
+INCLUDES=-I. -Icommon -Idrivers
# Pick a target to build for
TARGET = -DARCHOS_PLAYER=1
@@ -23,7 +23,7 @@ TARGET = -DARCHOS_PLAYER=1
CFLAGS = -Os -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns $(INCLUDES) $(TARGET)
AFLAGS += -small -relax
-SRC := $(wildcard *.c) $(wildcard common/*.c)
+SRC := $(wildcard drivers/*.c common/*.c *.c)
OBJS := $(SRC:%.c=%.o)
%.o: %.s