From 3806629e9e28abae3c2eff0c7513a24e20f8ba09 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Sun, 9 Jul 2017 16:45:04 +0200 Subject: [PATCH] fix default make target --- makefile_include.mk | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/makefile_include.mk b/makefile_include.mk index 6fce582..0dacc3f 100644 --- a/makefile_include.mk +++ b/makefile_include.mk @@ -151,6 +151,11 @@ else GROUP=wheel endif + +#The default rule for make builds the libtomcrypt library. +default: library + + # List of objects to compile (all goes to libtomcrypt.a) OBJECTS=src/ciphers/aes/aes.o src/ciphers/aes/aes_enc.o src/ciphers/anubis.o src/ciphers/blowfish.o \ 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 src/hashes/sha2/sha512_256.o: src/hashes/sha2/sha512.c src/hashes/sha2/sha512_256.c src/hashes/sha2/sha256.o: src/hashes/sha2/sha256.c src/hashes/sha2/sha224.c - -#The default rule for make builds the libtomcrypt library. -default:library - $(DOBJECTS): CFLAGS += -Itests $(TOBJECTS): CFLAGS += -Itests