Skip to content

Commit 3806629

Browse files
committed
fix default make target
1 parent 4d897a3 commit 3806629

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

makefile_include.mk

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,11 @@ else
151151
GROUP=wheel
152152
endif
153153

154+
155+
#The default rule for make builds the libtomcrypt library.
156+
default: library
157+
158+
154159
# List of objects to compile (all goes to libtomcrypt.a)
155160
OBJECTS=src/ciphers/aes/aes.o src/ciphers/aes/aes_enc.o src/ciphers/anubis.o src/ciphers/blowfish.o \
156161
src/ciphers/camellia.o src/ciphers/cast5.o src/ciphers/des.o src/ciphers/kasumi.o src/ciphers/khazad.o \
@@ -332,10 +337,6 @@ src/hashes/sha2/sha512_224.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha512_22
332337
src/hashes/sha2/sha512_256.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha512_256.c
333338
src/hashes/sha2/sha256.o: src/hashes/sha2/sha256.c src/hashes/sha2/sha224.c
334339

335-
336-
#The default rule for make builds the libtomcrypt library.
337-
default:library
338-
339340
$(DOBJECTS): CFLAGS += -Itests
340341
$(TOBJECTS): CFLAGS += -Itests
341342

0 commit comments

Comments
 (0)