diff options
| author | Amaury Pouly <pamaury@rockbox.org> | 2011-10-29 17:01:47 +0000 |
|---|---|---|
| committer | Amaury Pouly <pamaury@rockbox.org> | 2011-10-29 17:01:47 +0000 |
| commit | d2a58f3aadf33e11bcbc4743cac65d4464447db8 (patch) | |
| tree | c800fee3b6598b86aa3ff3aaf971d4ad5d6e9d06 /utils/sbtools/Makefile | |
| parent | 93c6c79e8d2ee39056afe7f8145b051d4a0e8d38 (diff) | |
| download | rockbox-d2a58f3aadf33e11bcbc4743cac65d4464447db8.zip rockbox-d2a58f3aadf33e11bcbc4743cac65d4464447db8.tar.gz rockbox-d2a58f3aadf33e11bcbc4743cac65d4464447db8.tar.bz2 rockbox-d2a58f3aadf33e11bcbc4743cac65d4464447db8.tar.xz | |
sbtools: move sb file production to its own file with a clean api, factor key reading even more
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30851 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/sbtools/Makefile')
| -rw-r--r-- | utils/sbtools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/sbtools/Makefile b/utils/sbtools/Makefile index 15d3adb..e4db3bf 100644 --- a/utils/sbtools/Makefile +++ b/utils/sbtools/Makefile @@ -9,10 +9,10 @@ all: elftosb sbtoelf %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< -sbtoelf: sbtoelf.o crc.o crypto.o aes128.o sha1.o elf.o misc.o +sbtoelf: sbtoelf.o crc.o crypto.o aes128.o sha1.o elf.o misc.o sb.o $(LD) $(LDFLAGS) -o $@ $^ -elftosb: elftosb.o crc.o crypto.o aes128.o sha1.o elf.o dbparser.o misc.o +elftosb: elftosb.o crc.o crypto.o aes128.o sha1.o elf.o dbparser.o misc.o sb.o $(LD) $(LDFLAGS) -o $@ $^ clean: |