diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-04-23 09:00:28 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-04-23 09:00:28 +0000 |
| commit | 34f948291202bdb42391bbc1200326e1aca00e5c (patch) | |
| tree | a6dea4430b746339c37c1241d591d27dc2a9879c | |
| parent | 77861463a2c04a56fb4e9574c3fac34ee64ceedc (diff) | |
| download | rockbox-34f948291202bdb42391bbc1200326e1aca00e5c.zip rockbox-34f948291202bdb42391bbc1200326e1aca00e5c.tar.gz rockbox-34f948291202bdb42391bbc1200326e1aca00e5c.tar.bz2 rockbox-34f948291202bdb42391bbc1200326e1aca00e5c.tar.xz | |
Added common directory
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@188 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index 4e4b25e..6c8cbbd 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. +INCLUDES=-I. -Icommon # 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) +SRC := $(wildcard *.c) $(wildcard common/*.c) OBJS := $(SRC:%.c=%.o) %.o: %.s |