Browse Source

fix default make target

Steffen Jaeckel 8 years ago
parent
commit
3806629e9e
1 changed files with 5 additions and 4 deletions
  1. 5 4
      makefile_include.mk

+ 5 - 4
makefile_include.mk

@@ -151,6 +151,11 @@ else
 GROUP=wheel
 GROUP=wheel
 endif
 endif
 
 
+
+#The default rule for make builds the libtomcrypt library.
+default: library
+
+
 # List of objects to compile (all goes to libtomcrypt.a)
 # 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 \
 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 \
 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/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
 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
 $(DOBJECTS): CFLAGS += -Itests
 $(TOBJECTS): CFLAGS += -Itests
 $(TOBJECTS): CFLAGS += -Itests