summaryrefslogtreecommitdiff
path: root/uisimulator/win32/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/win32/Makefile')
-rw-r--r--uisimulator/win32/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index f04a54bdd4..1921e54ca3 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -24,7 +24,8 @@ DEPFILE = $(OBJDIR)/dep-simwin
24RM = rm -f 24RM = rm -f
25DEBUG = -g 25DEBUG = -g
26 26
27INCLUDES = -I. -I$(SIMCOMMON) -I$(OBJDIR) -I$(FIRMDIR)/export -I$(APPSDIR) 27INCLUDES = -I. -I$(SIMCOMMON) -I$(OBJDIR) -I$(FIRMDIR)/export -I$(APPSDIR) \
28 -I$(BUILDDIR)
28 29
29DEFINES = -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR \ 30DEFINES = -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR \
30$(TARGET) -DAPPSVERSION=\"$(VERSION)\" -DMEM=${MEMORYSIZE} $(EXTRA_DEFINES) 31$(TARGET) -DAPPSVERSION=\"$(VERSION)\" -DMEM=${MEMORYSIZE} $(EXTRA_DEFINES)
@@ -39,7 +40,7 @@ DIRS = .
39 40
40CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mno-cygwin 41CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mno-cygwin
41 42
42OUTFILE = $(OBJDIR)/libsim.a 43OUTFILE = $(BUILDDIR)/libsim.a
43 44
44all: $(OUTFILE) 45all: $(OUTFILE)
45 @echo "MAKE in common sim" 46 @echo "MAKE in common sim"
@@ -62,7 +63,8 @@ $(OBJDIR)/UI256.bmp: UI-$(ARCHOS).bmp
62 @cp $< $@ 63 @cp $< $@
63 64
64$(OBJDIR)/uisw32-res.o: uisw32.rc $(OBJDIR)/UI256.bmp 65$(OBJDIR)/uisw32-res.o: uisw32.rc $(OBJDIR)/UI256.bmp
65 $(WINDRES) --include-dir $(OBJDIR) -i $< -o $@ 66 @echo "WINDRES"
67 @$(WINDRES) --include-dir $(OBJDIR) -i $< -o $@
66 68
67include $(TOOLSDIR)/make.inc 69include $(TOOLSDIR)/make.inc
68 70