diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-06-20 22:01:26 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-06-20 22:01:26 +0000 |
commit | 91c51764ee024f8f44618be8f6338c5c7faadded (patch) | |
tree | 5cfd5a61bf5af8a72c485bb8e4d838d10a1c92e2 /apps/plugins/lib | |
parent | 4df35e5f78a21f2990ec4c31fc38db0d2bea2695 (diff) |
on request, set the SIMULATOR define when building for the sim
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4780 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib')
-rw-r--r-- | apps/plugins/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/Makefile b/apps/plugins/lib/Makefile index 818140f276..dcab0ad749 100644 --- a/apps/plugins/lib/Makefile +++ b/apps/plugins/lib/Makefile @@ -31,7 +31,7 @@ INCLUDES=-I../.. -I.. -I. -I$(FIRMWARE)/include -I$(FIRMWARE)/export \ ifdef SIMULATOR CFLAGS = -W -Wall -O -nostdlib -ffreestanding -Wstrict-prototypes \ -$(INCLUDES) $(TARGET) $(EXTRA_DEFINES) +$(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DSIMULATOR else CFLAGS = -W -Wall -O -m1 -nostdlib -ffreestanding -Wstrict-prototypes \ $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DMEM=${MEM} |