summaryrefslogtreecommitdiff
path: root/uisimulator/common/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/common/Makefile')
-rw-r--r--uisimulator/common/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/uisimulator/common/Makefile b/uisimulator/common/Makefile
index b044440adf..e2b6b2a4f8 100644
--- a/uisimulator/common/Makefile
+++ b/uisimulator/common/Makefile
@@ -23,7 +23,7 @@ RM = rm -f
23DEBUG = -g 23DEBUG = -g
24 24
25# Use this for simulator-only files 25# Use this for simulator-only files
26INCLUDES = -I. -I$(OBJDIR) -I$(FIRMDIR)/export -I$(APPSDIR) 26INCLUDES = -I. -I$(OBJDIR) -I$(FIRMDIR)/export -I$(APPSDIR) -I$(ROOTDIR)/uisimulator/$(SIMVER)
27 27
28SRC := $(shell cat SOURCES | gcc -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \ 28SRC := $(shell cat SOURCES | gcc -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \
29 $(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - ) 29 $(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - )
@@ -38,7 +38,7 @@ DIRS = .
38 38
39CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) $(GCCOPTS) 39CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) $(GCCOPTS)
40 40
41OUTFILE = $(OBJDIR)/libsim.a 41OUTFILE = $(OBJDIR)/libcomsim.a
42 42
43all: $(OUTFILE) 43all: $(OUTFILE)
44 44
@@ -46,7 +46,7 @@ include $(TOOLSDIR)/make.inc
46 46
47clean: 47clean:
48 @echo "cleaning commonsim" 48 @echo "cleaning commonsim"
49 @$(RM) $(OBJS) *~ core $(DEPFILE) 49 @$(RM) $(OBJS) *~ core $(DEPFILE) $(OUTFILE)
50 50
51$(OUTFILE): $(OBJS) 51$(OUTFILE): $(OBJS)
52 @echo "AR+RANLIB $@" 52 @echo "AR+RANLIB $@"