summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-12-07 22:34:37 +0000
committerDave Chapman <dave@dchapman.com>2007-12-07 22:34:37 +0000
commit06c405620c8300d90799e1ad962964ff7227d662 (patch)
tree52340d35f34956dff3fc9bbfa924ef98a11a2b60
parent2b5f979d75a3d1c85b498c87ba6ae4c98c3011bc (diff)
downloadrockbox-06c405620c8300d90799e1ad962964ff7227d662.zip
rockbox-06c405620c8300d90799e1ad962964ff7227d662.tar.gz
rockbox-06c405620c8300d90799e1ad962964ff7227d662.tar.bz2
rockbox-06c405620c8300d90799e1ad962964ff7227d662.tar.xz
Remove X11/win32 simulator rules
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15893 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/sudoku/Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/apps/plugins/sudoku/Makefile b/apps/plugins/sudoku/Makefile
index ce3c202..bb1425c 100644
--- a/apps/plugins/sudoku/Makefile
+++ b/apps/plugins/sudoku/Makefile
@@ -44,23 +44,6 @@ $(OBJDIR)/sudoku.elf: $(OBJS) $(LINKFILE) $(BITMAPLIBS)
$(OUTPUT): $(OBJDIR)/sudoku.elf
$(call PRINTS,OBJCOPY $(@F))$(OC) -O binary $< $@
else
-
-ifeq ($(SIMVER), x11)
-###################################################
-# This is the X11 simulator version
-
-$(OUTPUT): $(OBJS)
- $(call PRINTS,LD $(@F))$(CC) $(CFLAGS) $(SHARED_FLAG) $(OBJS) -L$(BUILDDIR) -lplugin $(LINKBITMAPS) -o $@
-ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
-# 'x' must be kept or you'll have "Win32 error 5"
-# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
-# #define ERROR_ACCESS_DENIED 5L
-else
- @chmod -x $@
-endif
-
-else # end of x11-simulator
-ifeq ($(SIMVER), sdl)
###################################################
# This is the SDL simulator version
@@ -74,25 +57,6 @@ else
@chmod -x $@
endif
-else # end of sdl-simulator
-###################################################
-# This is the win32 simulator version
-DLLTOOLFLAGS = --export-all
-DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin
-
-$(OUTPUT): $(OBJS)
- $(call PRINTS,DLL $(@F))$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $(OBJS)
- $(SILENT)$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $(OBJS) \
- $(BUILDDIR)/libplugin.a $(BITMAPLIBS) -o $@
-ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
-# 'x' must be kept or you'll have "Win32 error 5"
-# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
-# #define ERROR_ACCESS_DENIED 5L
-else
- @chmod -x $@
-endif
-endif # end of win32-simulator
-endif
endif # end of simulator section