diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2017-05-31 20:26:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-31 20:26:25 +0200 |
commit | 0fa694250b16dc939fbfb4bced6803b0c4c049bc (patch) | |
tree | 387d9ce4bf55b8f293650ca3d28ee4027148d0da | |
parent | improve readme (diff) | |
parent | move `-lkeccak -largparse` to the end of the linking instruction (diff) | |
download | sha3sum-0fa694250b16dc939fbfb4bced6803b0c4c049bc.tar.gz sha3sum-0fa694250b16dc939fbfb4bced6803b0c4c049bc.tar.bz2 sha3sum-0fa694250b16dc939fbfb4bced6803b0c4c049bc.tar.xz |
Merge pull request #17 from Limeth/master
move `-lkeccak -largparse` to the end of the linking instruction
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ command: $(foreach C,$(CMDS),bin/$(C)) bin/%: obj/%.o obj/common.o @mkdir -p bin - $(CC) $(FLAGS) $(LDOPTIMISE) -lkeccak -largparser -o $@ $^ $(LDFLAGS) + $(CC) $(FLAGS) $(LDOPTIMISE) -o $@ $^ $(LDFLAGS) -lkeccak -largparser obj/%.o: src/%.c src/*.h @mkdir -p obj |