summaryrefslogtreecommitdiff
path: root/uisimulator/sdl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/sdl/Makefile')
-rw-r--r--uisimulator/sdl/Makefile13
1 files changed, 5 insertions, 8 deletions
diff --git a/uisimulator/sdl/Makefile b/uisimulator/sdl/Makefile
index 55b94cec5e..7946ef31a2 100644
--- a/uisimulator/sdl/Makefile
+++ b/uisimulator/sdl/Makefile
@@ -49,19 +49,16 @@ all: $(OUTFILE)
49include $(TOOLSDIR)/make.inc 49include $(TOOLSDIR)/make.inc
50 50
51$(OUTFILE): $(OBJS) $(BUILDDIR)/UI256.bmp 51$(OUTFILE): $(OBJS) $(BUILDDIR)/UI256.bmp
52 @echo "AR+RANLIB $(notdir $@)" 52 $(call PRINTS,AR+RANLIB $(@F))$(AR) ruv $@ $(OBJS) >/dev/null 2>&1
53 @$(AR) ruv $@ $(OBJS) >/dev/null 2>&1 53 $(SILENT)$(RANLIB) $@
54 @$(RANLIB) $@
55 54
56clean: 55clean:
57 @echo "cleaning sim" 56 $(call PRINTS,cleaning sim)$(RM) $(OBJS) *~ core $(OUTFILE) $(DEPFILE) \
58 @$(RM) $(OBJS) *~ core $(OUTFILE) $(DEPFILE) \
59 $(BUILDDIR)/UI256.bmp $(DEPFILE) 57 $(BUILDDIR)/UI256.bmp $(DEPFILE)
60 @$(MAKE) -C $(SIMCOMMON) clean 58 $(SILENT)$(MAKE) -C $(SIMCOMMON) clean
61 59
62################## Specific dependencies ################## 60################## Specific dependencies ##################
63$(BUILDDIR)/UI256.bmp: UI-$(ARCHOS).bmp 61$(BUILDDIR)/UI256.bmp: UI-$(ARCHOS).bmp
64 @echo UI 62 $(call PRINTS,UI)cp $< $@
65 @cp $< $@
66 63
67-include $(DEPFILE) 64-include $(DEPFILE)