Make sure codec directory exists before creating link file.
[kugel-rb.git] / uisimulator / uisimulator.make
bloba5707bdea631bda2a6eb600a5d131a285176d812
1 # __________ __ ___.
2 # Open \______ \ ____ ____ | | _\_ |__ _______ ___
3 # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4 # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5 # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6 # \/ \/ \/ \/ \/
7 # $Id: Makefile 19082 2008-11-10 23:54:24Z zagor $
10 INCLUDES += -I$(ROOTDIR)/uisimulator/sdl -I$(ROOTDIR)/uisimulator/common \
12 SIMINCLUDES += -I$(ROOTDIR)/uisimulator/sdl -I$(ROOTDIR)/uisimulator/common \
13 -I$(FIRMDIR)/export $(TARGET_INC) -I$(BUILDDIR) -I$(APPSDIR)
15 SIMFLAGS += $(SIMINCLUDES) $(DEFINES) -DHAVE_CONFIG_H $(GCCOPTS)
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)
22 SIMLIB = $(BUILDDIR)/uisimulator/libuisimulator.a
23 UIBMP = $(BUILDDIR)/UI256.bmp
25 .SECONDEXPANSION: # $$(OBJ) is not populated until after this
27 $(SIMLIB): $$(SIMOBJ) $(UIBMP)
28 $(call PRINTS,AR $(@F))$(AR) rs $@ $^ >/dev/null 2>&1
30 $(BUILDDIR)/$(BINARY): $$(OBJ) $(SIMLIB) $(VOICESPEEXLIB) $(FIRMLIB)
31 $(call PRINTS,LD $(BINARY))$(CC) -o $@ $^ $(LDOPTS)
33 $(BUILDDIR)/uisimulator/%.o: $(ROOTDIR)/uisimulator/%.c
34 $(SILENT)mkdir -p $(dir $@)
35 $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) $(SIMFLAGS) -c $< -o $@
37 $(UIBMP): $(ROOTDIR)/uisimulator/sdl/UI-$(MODELNAME).bmp
38 $(call PRINTS,CP $(@F))cp $< $@