summaryrefslogtreecommitdiff
path: root/rbutil/mkzenboot/Makefile
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2016-12-16 19:39:07 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2016-12-16 19:46:07 +0100
commit6f4beaa52c33737f8ffd9047af2d9fe2fb168a1e (patch)
tree78eae9901e5c08ccd21831ce54da3a985c086626 /rbutil/mkzenboot/Makefile
parentefe3775145fc31ca5fc88f44fbd92264f0a489be (diff)
downloadrockbox-6f4beaa52c33737f8ffd9047af2d9fe2fb168a1e.tar.gz
rockbox-6f4beaa52c33737f8ffd9047af2d9fe2fb168a1e.zip
Don't add LIBSOURCES to SOURCES.
Split source files for library and stand-alone binary and use library as dependency when building the stand-alone binary. This avoids dependencies getting added multiple times. Remove outdated RBARCH handling, we always create fat binaries on OS X these days. Change-Id: Ia15a731296edcbe90869a1bf66dda2c3d6c7e317
Diffstat (limited to 'rbutil/mkzenboot/Makefile')
-rw-r--r--rbutil/mkzenboot/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/mkzenboot/Makefile b/rbutil/mkzenboot/Makefile
index 019b8a669f..ebc7a1670a 100644
--- a/rbutil/mkzenboot/Makefile
+++ b/rbutil/mkzenboot/Makefile
@@ -19,7 +19,7 @@ LIBSOURCES := dualboot.c mkzenboot.c md5.c utils.c \
19 $(addprefix $(TOOLS_DIR),$(TOOLS_SOURCES)) 19 $(addprefix $(TOOLS_DIR),$(TOOLS_SOURCES))
20 20
21# inputs for binary only 21# inputs for binary only
22SOURCES := $(LIBSOURCES) main.c 22SOURCES := main.c
23# dependencies for binary 23# dependencies for binary
24EXTRADEPS := 24EXTRADEPS :=
25 25