summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/Makefile19
-rw-r--r--apps/plugins/Makefile17
-rw-r--r--apps/plugins/databox/Makefile18
-rw-r--r--apps/plugins/rockboy/Makefile18
-rw-r--r--apps/plugins/searchengine/Makefile18
5 files changed, 86 insertions, 4 deletions
diff --git a/apps/codecs/Makefile b/apps/codecs/Makefile
index 88f7af512f..5aec2ed983 100644
--- a/apps/codecs/Makefile
+++ b/apps/codecs/Makefile
@@ -87,7 +87,23 @@ else
87 @chmod -x $@ 87 @chmod -x $@
88endif 88endif
89 89
90else # end of x11-simulator 90else # end of x11-simulator
91ifeq ($(SIMVER), sdl)
92###################################################
93# This is the SDL simulator version
94
95$(OBJDIR)/%.codec : $(OBJDIR)/%.o $(BUILDDIR)/libcodec.a
96 @echo "LD "`basename $@`
97 @$(CC) $(CFLAGS) -shared $< -L$(BUILDDIR) $(CODECLIBS) -lcodec -o $@
98ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
99# 'x' must be kept or you'll have "Win32 error 5"
100# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
101# #define ERROR_ACCESS_DENIED 5L
102else
103 @chmod -x $@
104endif
105
106else # end of sdl-simulator
91################################################### 107###################################################
92# This is the win32 simulator version 108# This is the win32 simulator version
93DLLTOOLFLAGS = --export-all 109DLLTOOLFLAGS = --export-all
@@ -106,6 +122,7 @@ else
106 @chmod -x $@ 122 @chmod -x $@
107endif 123endif
108endif # end of win32-simulator 124endif # end of win32-simulator
125endif
109 126
110endif # end of simulator section 127endif # end of simulator section
111 128
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile
index 019a4590c8..98c66c6d46 100644
--- a/apps/plugins/Makefile
+++ b/apps/plugins/Makefile
@@ -86,6 +86,22 @@ else
86endif 86endif
87 87
88else # end of x11-simulator 88else # end of x11-simulator
89ifeq ($(SIMVER), sdl)
90###################################################
91# This is the SDL simulator version
92
93$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(BUILDDIR)/libplugin.a
94 @echo "LD "`basename $@`
95 @$(CC) $(CFLAGS) -shared $< -L$(BUILDDIR) $(CODECLIBS) -lplugin -o $@
96ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
97# 'x' must be kept or you'll have "Win32 error 5"
98# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
99# #define ERROR_ACCESS_DENIED 5L
100else
101 @chmod -x $@
102endif
103
104else # end of sdl-simulator
89################################################### 105###################################################
90# This is the win32 simulator version 106# This is the win32 simulator version
91DLLTOOLFLAGS = --export-all 107DLLTOOLFLAGS = --export-all
@@ -104,6 +120,7 @@ else
104 @chmod -x $@ 120 @chmod -x $@
105endif 121endif
106endif # end of win32-simulator 122endif # end of win32-simulator
123endif
107 124
108endif # end of simulator section 125endif # end of simulator section
109 126
diff --git a/apps/plugins/databox/Makefile b/apps/plugins/databox/Makefile
index 12b211d527..78387fd6f1 100644
--- a/apps/plugins/databox/Makefile
+++ b/apps/plugins/databox/Makefile
@@ -56,6 +56,22 @@ else
56endif 56endif
57 57
58else # end of x11-simulator 58else # end of x11-simulator
59ifeq ($(SIMVER), sdl)
60###################################################
61# This is the SDL simulator version
62
63$(OUTPUT): $(OBJS)
64 @echo "LD $<"
65 @$(CC) $(CFLAGS) -shared $(OBJS) -L$(BUILDDIR) -lplugin -o $@
66ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
67# 'x' must be kept or you'll have "Win32 error 5"
68# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
69# #define ERROR_ACCESS_DENIED 5L
70else
71 @chmod -x $@
72endif
73
74else # end of sdl-simulator
59################################################### 75###################################################
60# This is the win32 simulator version 76# This is the win32 simulator version
61DLLTOOLFLAGS = --export-all 77DLLTOOLFLAGS = --export-all
@@ -74,7 +90,7 @@ else
74 @chmod -x $@ 90 @chmod -x $@
75endif 91endif
76endif # end of win32-simulator 92endif # end of win32-simulator
77 93endif
78endif # end of simulator section 94endif # end of simulator section
79 95
80 96
diff --git a/apps/plugins/rockboy/Makefile b/apps/plugins/rockboy/Makefile
index 23c614210a..3657e8d786 100644
--- a/apps/plugins/rockboy/Makefile
+++ b/apps/plugins/rockboy/Makefile
@@ -72,6 +72,22 @@ else
72endif 72endif
73 73
74else # end of x11-simulator 74else # end of x11-simulator
75ifeq ($(SIMVER), sdl)
76###################################################
77# This is the sdl simulator version
78
79$(OUTPUT): $(OBJS)
80 @echo "LD $@"
81 @$(CC) $(CFLAGS) -shared $(OBJS) -L$(BUILDDIR) -lplugin -o $@
82ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
83# 'x' must be kept or you'll have "Win32 error 5"
84# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
85# #define ERROR_ACCESS_DENIED 5L
86else
87 @chmod -x $@
88endif
89
90else # end of sdl-simulator
75################################################### 91###################################################
76# This is the win32 simulator version 92# This is the win32 simulator version
77DLLTOOLFLAGS = --export-all 93DLLTOOLFLAGS = --export-all
@@ -90,7 +106,7 @@ else
90 @chmod -x $@ 106 @chmod -x $@
91endif 107endif
92endif # end of win32-simulator 108endif # end of win32-simulator
93 109endif
94endif # end of simulator section 110endif # end of simulator section
95 111
96 112
diff --git a/apps/plugins/searchengine/Makefile b/apps/plugins/searchengine/Makefile
index 26e8517db2..efa7d95d2d 100644
--- a/apps/plugins/searchengine/Makefile
+++ b/apps/plugins/searchengine/Makefile
@@ -56,6 +56,22 @@ else
56endif 56endif
57 57
58else # end of x11-simulator 58else # end of x11-simulator
59ifeq ($(SIMVER), sdl)
60###################################################
61# This is the SDL simulator version
62
63$(OUTPUT): $(OBJS)
64 @echo "LD $<"
65 @$(CC) $(CFLAGS) -shared $(OBJS) -L$(BUILDDIR) -lplugin -o $@
66ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
67# 'x' must be kept or you'll have "Win32 error 5"
68# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
69# #define ERROR_ACCESS_DENIED 5L
70else
71 @chmod -x $@
72endif
73
74else # end of sdl-simulator
59################################################### 75###################################################
60# This is the win32 simulator version 76# This is the win32 simulator version
61DLLTOOLFLAGS = --export-all 77DLLTOOLFLAGS = --export-all
@@ -74,7 +90,7 @@ else
74 @chmod -x $@ 90 @chmod -x $@
75endif 91endif
76endif # end of win32-simulator 92endif # end of win32-simulator
77 93endif
78endif # end of simulator section 94endif # end of simulator section
79 95
80 96