summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-18 14:36:55 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-18 14:36:55 +0000
commit0308fc2c962dfed419474a7ecabb70818e7f8603 (patch)
treeba89a0e713d709a77f7883b94d83912b270eee0f
parent227085ec0b21780818f87c90b5256734d7ce04ac (diff)
downloadrockbox-0308fc2c962dfed419474a7ecabb70818e7f8603.tar.gz
rockbox-0308fc2c962dfed419474a7ecabb70818e7f8603.zip
use CFLAGS and the codeclibs when linking .rocks on x11 sim
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6003 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile
index 6af39327bc..1ecf3809fe 100644
--- a/apps/plugins/Makefile
+++ b/apps/plugins/Makefile
@@ -52,7 +52,7 @@ ifeq ($(SIMVER), x11)
52 52
53$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(APPSDIR)/plugin.h 53$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(APPSDIR)/plugin.h
54 @echo "LD $@" 54 @echo "LD $@"
55 @$(CC) $(APPCFLAGS) -DPLUGIN -shared $< -L$(OBJDIR) -lplugin -o $@ 55 @$(CC) $(CFLAGS) -shared $< -L$(OBJDIR) $(CODECLIBS) -lplugin -o $@
56ifeq ($(UNAME),CYGWIN) 56ifeq ($(UNAME),CYGWIN)
57# 'x' must be kept or you'll have "Win32 error 5" 57# 'x' must be kept or you'll have "Win32 error 5"
58# $ fgrep 5 /usr/include/w32api/winerror.h | head -1 58# $ fgrep 5 /usr/include/w32api/winerror.h | head -1