diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-02-19 07:05:39 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-02-19 07:05:39 +0000 |
| commit | a63b225a147b7b1a6a3d3ef7e96c7049b70d8e77 (patch) | |
| tree | 16adfa1f0a3e21c2aa3fa53b520c3d39e919a287 | |
| parent | a37e43cfba630cea456eb57cb8818de500f70431 (diff) | |
| download | rockbox-a63b225a147b7b1a6a3d3ef7e96c7049b70d8e77.zip rockbox-a63b225a147b7b1a6a3d3ef7e96c7049b70d8e77.tar.gz rockbox-a63b225a147b7b1a6a3d3ef7e96c7049b70d8e77.tar.bz2 rockbox-a63b225a147b7b1a6a3d3ef7e96c7049b70d8e77.tar.xz | |
mkamsboot binary depends on the same object files than libmkamsboot
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24763 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/mkamsboot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/mkamsboot/Makefile b/rbutil/mkamsboot/Makefile index eca330a..6eae46e 100644 --- a/rbutil/mkamsboot/Makefile +++ b/rbutil/mkamsboot/Makefile @@ -56,7 +56,7 @@ libmkamsboot$(RBARCH).a: $(LIBOBJS) $(SILENT)$(AR) ruc $(TARGET_DIR)$@ $^ # building the standalone executable -$(OUTPUT): $(OBJS) $(EXTRADEPS) +$(OUTPUT): $(OBJS) $(LIBOBJS) $(EXTRADEPS) @echo LD $@ $(SILENT)$(CC) $(CFLAGS) -o $(OUTPUT) $(OBJS) $(EXTRADEPS) |