summaryrefslogtreecommitdiffstats
path: root/engines/Makefile.in
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-07 15:50:52 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-07 18:28:25 +0100
commitd62d17b9c0d8f40beaf4e168c08f18cd8bcda79b (patch)
tree35df4f08bd9d5dd5b5f611ff0e9c69b603c18158 /engines/Makefile.in
parent6bd7a4d96c47068c63cbd2ca93f501816dc453c1 (diff)
Unified - adapt the generation of padlock assembler to use GENERATE
This gets rid of the BEGINRAW..ENDRAW sections in engines/build.info. This also moves the assembler generating perl scripts to take the output file name as last command line argument, where necessary. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'engines/Makefile.in')
-rw-r--r--engines/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/Makefile.in b/engines/Makefile.in
index 1645ad5216..cc614278fc 100644
--- a/engines/Makefile.in
+++ b/engines/Makefile.in
@@ -72,9 +72,9 @@ lib: $(LIBOBJ) $(TESTLIBOBJ)
touch lib
e_padlock-x86.s: asm/e_padlock-x86.pl
- $(PERL) asm/e_padlock-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
+ $(PERL) asm/e_padlock-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) $@
e_padlock-x86_64.s: asm/e_padlock-x86_64.pl
- $(PERL) asm/e_padlock-x86_64.pl $(PERLASM_SCHEME) > $@
+ $(PERL) asm/e_padlock-x86_64.pl $(PERLASM_SCHEME) $@
subdirs:
@target=all; $(RECURSIVE_MAKE)