diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-23 21:10:13 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-23 21:10:13 +0000 |
| commit | 0e067bbe557188431d436955b3b22607a52f800e (patch) | |
| tree | d169c5298af5d16c7e8af3df105759963e587f74 /apps/plugins/lib | |
| parent | 865effac7e5eb78fd40cd4fc9b9adc0e883e9fc5 (diff) | |
| download | rockbox-0e067bbe557188431d436955b3b22607a52f800e.zip rockbox-0e067bbe557188431d436955b3b22607a52f800e.tar.gz rockbox-0e067bbe557188431d436955b3b22607a52f800e.tar.bz2 rockbox-0e067bbe557188431d436955b3b22607a52f800e.tar.xz | |
Removed the simulator build option
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4929 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib')
| -rw-r--r-- | apps/plugins/lib/Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/plugins/lib/Makefile b/apps/plugins/lib/Makefile index df527d8..929ee98 100644 --- a/apps/plugins/lib/Makefile +++ b/apps/plugins/lib/Makefile @@ -7,19 +7,11 @@ # $Id$ # -ifdef SIMULATOR -CC = gcc -LD = ld -AR = ar -AS = as -OC = objcopy -else CC = sh-elf-gcc LD = sh-elf-ld AR = sh-elf-ar AS = sh-elf-as OC = sh-elf-objcopy -endif FIRMWARE = ../../../firmware @@ -36,13 +28,8 @@ ifeq ($(ANYREC), RECORDER) INCLUDES += -I../../recorder endif -ifdef SIMULATOR -CFLAGS = -W -Wall -O -nostdlib -ffreestanding -Wstrict-prototypes \ -$(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DSIMULATOR -else CFLAGS = -W -Wall -O -m1 -nostdlib -ffreestanding -Wstrict-prototypes \ $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DMEM=${MEM} -endif ifndef MEM # if MEM is not set, assume 2MB |