summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-05-21 14:33:00 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-05-21 14:33:00 +0000
commit6466b62e5d6c92c640a60dbbd73af7a368018149 (patch)
tree032f55427bf66c406c2b8cc42b8fa15d9d17d555 /apps
parente493efd12b0840541be2e98df30597692ab2eb8f (diff)
downloadrockbox-6466b62e5d6c92c640a60dbbd73af7a368018149.tar.gz
rockbox-6466b62e5d6c92c640a60dbbd73af7a368018149.zip
Added extra source files if compiling recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@644 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index de97bead7b..f535921df5 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -32,7 +32,12 @@ endif
32CFLAGS = -O -W -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns $(INCLUDES) $(TARGET) $(DEFINES) 32CFLAGS = -O -W -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns $(INCLUDES) $(TARGET) $(DEFINES)
33AFLAGS += -small -relax 33AFLAGS += -small -relax
34 34
35SRC := $(wildcard drivers/*.c common/*.c *.c) 35SRC := $(wildcard *.c)
36
37ifeq ($(TARGET),-DARCHOS_RECORDER)
38 SRC += $(wildcard recorder/*.c)
39endif
40
36OBJS := $(SRC:%.c=%.o) 41OBJS := $(SRC:%.c=%.o)
37 42
38all : archos.mod # archos.asm 43all : archos.mod # archos.asm