Skip to content
Snippets Groups Projects
Commit 9c11807f authored by Niels Möller's avatar Niels Möller
Browse files

(libnettle_a_SOURCES): Reordered aes-decrypt.c and

aes-encrypt.c. For some strange reason it makes the benchmark go
faster...

Rev: src/nettle/Makefile.am:1.33
parent e11c6e6e
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ libnettleinclude_HEADERS = aes.h arcfour.h blowfish.h \ ...@@ -16,7 +16,7 @@ libnettleinclude_HEADERS = aes.h arcfour.h blowfish.h \
serpent.h sha.h twofish.h \ serpent.h sha.h twofish.h \
yarrow.h yarrow.h
libnettle_a_SOURCES = aes.c aes-encrypt.c aes-decrypt.c aes.h \ libnettle_a_SOURCES = aes.c aes-decrypt.c aes-encrypt.c aes.h \
aes-set-encrypt-key.c aes-set-decrypt-key.c aes-meta.c \ aes-set-encrypt-key.c aes-set-decrypt-key.c aes-meta.c \
arcfour.c arcfour.h arcfour-meta.c \ arcfour.c arcfour.h arcfour-meta.c \
base64.c base64-meta.c base64.h \ base64.c base64-meta.c base64.h \
...@@ -56,7 +56,7 @@ SUFFIXES = .asm ...@@ -56,7 +56,7 @@ SUFFIXES = .asm
RM_TMP = rm -f RM_TMP = rm -f
# FIXME: How to write this without using GNU make features? # FIXME: How to write this without using GNU make features?
%.o: %.asm asm.m4 %.o: %.asm asm.m4 machine.m4
$(M4) `test -f $< || echo '$(srcdir)/'`$< >tmp-$*.s $(M4) `test -f $< || echo '$(srcdir)/'`$< >tmp-$*.s
$(COMPILE) -c tmp-$*.s -o $@ $(COMPILE) -c tmp-$*.s -o $@
$(RM_TMP) tmp-$*.s $(RM_TMP) tmp-$*.s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment