Björn Stenberg | c6b3d38 | 2008-11-20 11:27:31 +0000 | [diff] [blame] | 1 | # __________ __ ___. |
| 2 | # Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 3 | # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 4 | # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 5 | # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 6 | # \/ \/ \/ \/ \/ |
Björn Stenberg | a091d20 | 2008-11-25 19:54:23 +0000 | [diff] [blame] | 7 | # $Id$ |
Björn Stenberg | c6b3d38 | 2008-11-20 11:27:31 +0000 | [diff] [blame] | 8 | # |
| 9 | |
| 10 | INCLUDES += -I$(ROOTDIR)/uisimulator/sdl -I$(ROOTDIR)/uisimulator/common \ |
| 11 | |
| 12 | SIMINCLUDES += -I$(ROOTDIR)/uisimulator/sdl -I$(ROOTDIR)/uisimulator/common \ |
| 13 | -I$(FIRMDIR)/export $(TARGET_INC) -I$(BUILDDIR) -I$(APPSDIR) |
| 14 | |
| 15 | SIMFLAGS += $(SIMINCLUDES) $(DEFINES) -DHAVE_CONFIG_H $(GCCOPTS) |
| 16 | |
| 17 | SIMSRC += $(call preprocess, $(ROOTDIR)/uisimulator/sdl/SOURCES) |
| 18 | SIMSRC += $(call preprocess, $(ROOTDIR)/uisimulator/common/SOURCES) |
| 19 | SIMOBJ = $(call c2obj,$(SIMSRC)) |
| 20 | OTHER_SRC += $(SIMSRC) |
| 21 | |
| 22 | SIMLIB = $(BUILDDIR)/uisimulator/libuisimulator.a |
| 23 | UIBMP = $(BUILDDIR)/UI256.bmp |
| 24 | |
| 25 | .SECONDEXPANSION: # $$(OBJ) is not populated until after this |
| 26 | |
| 27 | $(SIMLIB): $$(SIMOBJ) $(UIBMP) |
Björn Stenberg | 7bdf9a3 | 2008-11-20 16:51:13 +0000 | [diff] [blame] | 28 | $(SILENT)$(shell rm -f $@) |
Björn Stenberg | c6b3d38 | 2008-11-20 11:27:31 +0000 | [diff] [blame] | 29 | $(call PRINTS,AR $(@F))$(AR) rs $@ $^ >/dev/null 2>&1 |
| 30 | |
| 31 | $(BUILDDIR)/$(BINARY): $$(OBJ) $(SIMLIB) $(VOICESPEEXLIB) $(FIRMLIB) |
| 32 | $(call PRINTS,LD $(BINARY))$(CC) -o $@ $^ $(LDOPTS) |
| 33 | |
| 34 | $(BUILDDIR)/uisimulator/%.o: $(ROOTDIR)/uisimulator/%.c |
| 35 | $(SILENT)mkdir -p $(dir $@) |
| 36 | $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) $(SIMFLAGS) -c $< -o $@ |
| 37 | |
| 38 | $(UIBMP): $(ROOTDIR)/uisimulator/sdl/UI-$(MODELNAME).bmp |
| 39 | $(call PRINTS,CP $(@F))cp $< $@ |