diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-02-22 12:19:12 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-22 12:19:12 +0000 |
| commit | 22b7701fe75cce9afdbc27046821dc089f9e7dac (patch) | |
| tree | ca5b4f0428fad0fc9c775dfb0ac879ddee863846 /apps/plugins/Makefile | |
| parent | 376057d2b67bae0a7b24ae1715d3cbb0b540b7a9 (diff) | |
| download | rockbox-22b7701fe75cce9afdbc27046821dc089f9e7dac.zip rockbox-22b7701fe75cce9afdbc27046821dc089f9e7dac.tar.gz rockbox-22b7701fe75cce9afdbc27046821dc089f9e7dac.tar.bz2 rockbox-22b7701fe75cce9afdbc27046821dc089f9e7dac.tar.xz | |
Build cleanup and general fixes. fprintf() is now fdprintf(), the separation
between uisimulator files and firmware/apps files are better done.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6031 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/Makefile')
| -rw-r--r-- | apps/plugins/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index 9549959..ef506a9 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -71,7 +71,13 @@ $(OBJDIR)/%.rock : $(OBJDIR)/%.o $(APPSDIR)/plugin.h @echo "DLL $@" @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $< @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $< $(OBJDIR)/libplugin.a -o $@ +ifeq ($(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 # end of simulator section |