diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-02-18 14:36:55 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-18 14:36:55 +0000 |
| commit | 0308fc2c962dfed419474a7ecabb70818e7f8603 (patch) | |
| tree | ba89a0e713d709a77f7883b94d83912b270eee0f /apps/plugins | |
| parent | 227085ec0b21780818f87c90b5256734d7ce04ac (diff) | |
| download | rockbox-0308fc2c962dfed419474a7ecabb70818e7f8603.zip rockbox-0308fc2c962dfed419474a7ecabb70818e7f8603.tar.gz rockbox-0308fc2c962dfed419474a7ecabb70818e7f8603.tar.bz2 rockbox-0308fc2c962dfed419474a7ecabb70818e7f8603.tar.xz | |
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
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index 6af3932..1ecf380 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -52,7 +52,7 @@ ifeq ($(SIMVER), x11) $(OBJDIR)/%.rock : $(OBJDIR)/%.o $(APPSDIR)/plugin.h @echo "LD $@" - @$(CC) $(APPCFLAGS) -DPLUGIN -shared $< -L$(OBJDIR) -lplugin -o $@ + @$(CC) $(CFLAGS) -shared $< -L$(OBJDIR) $(CODECLIBS) -lplugin -o $@ ifeq ($(UNAME),CYGWIN) # 'x' must be kept or you'll have "Win32 error 5" # $ fgrep 5 /usr/include/w32api/winerror.h | head -1 |