summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index a5ce323be9..6a9aca303d 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -15,8 +15,6 @@ OC = sh-elf-objcopy
15 15
16INCLUDES=-Iinclude -I. -Icommon -Idrivers 16INCLUDES=-Iinclude -I. -Icommon -Idrivers
17 17
18SYSTEM_FONT = fonts/alt6x10.bdf
19
20# store output files in this directory: 18# store output files in this directory:
21OBJDIR = . 19OBJDIR = .
22TOOLSDIR = ../tools 20TOOLSDIR = ../tools
@@ -56,14 +54,11 @@ $(OBJDIR)/%.o: %.S
56 @mkdir -p `dirname $@` 54 @mkdir -p `dirname $@`
57 $(CC) $(CFLAGS) -c $< -o $@ 55 $(CC) $(CFLAGS) -c $< -o $@
58 56
59$(OBJDIR)/system.ajf: $(SYSTEM_FONT)
60 ../tools/bdf2ajf -f $(SYSTEM_FONT) -o $(OBJDIR)/system.ajf
61
62tags: 57tags:
63 @$(SHELL) -c 'for d in $(DIRS); do { etags -o $(OBJDIR)/TAGS -a $$d/*.[ch]; }; done' 58 @$(SHELL) -c 'for d in $(DIRS); do { etags -o $(OBJDIR)/TAGS -a $$d/*.[ch]; }; done'
64 59
65clean: 60clean:
66 rm -f $(OBJS) $(OUTPUT) 61 rm -f $(OBJS) $(OUTPUT) $(OBJDIR)/sysfont.c
67 rm -rf $(OBJDIR)/$(DEPS) 62 rm -rf $(OBJDIR)/$(DEPS)
68 63
69# Special targets 64# Special targets