From c4617f0988ff6d8b0ce832a1479571980712844f Mon Sep 17 00:00:00 2001 From: Stefan `Sec` Zehl Date: Fri, 13 May 2011 15:20:08 +0200 Subject: [PATCH] improve build infrastructure a bit --- Makefile | 6 +++++- lcd/Makefile | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 305157a..5a1f375 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ all: firmware core/libcore.a: core/projectconfig.h cd core && $(MAKE) -lcd/libfont.a: +lcd/libfont.a lcd/render.o lcd/display.o: cd lcd && $(MAKE) tools/lpcrc: @@ -106,3 +106,7 @@ clean: @cd core && $(MAKE) clean @cd tools && $(MAKE) clean @cd lcd && $(MAKE) clean + + +.PHONY: lcd/libfont.a + diff --git a/lcd/Makefile b/lcd/Makefile index c854539..479666a 100644 --- a/lcd/Makefile +++ b/lcd/Makefile @@ -19,6 +19,10 @@ OBJS += veramono9.o OBJS += veramonobold11.o OBJS += veramonobold9.o +OBJS += vera11.o +OBJS += vera17.o +OBJS += vera23.o + OBJS += display.o OBJS += render.o