summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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