Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Brian Smith
nettle
Commits
d2a420d7
Commit
d2a420d7
authored
Oct 20, 2004
by
Niels Möller
Browse files
* Makefile.in: In the assembler rules, there's no need to look in
$(srcdir) for the input file. Rev: src/nettle/Makefile.in:1.4
parent
13070098
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile.in
View file @
d2a420d7
...
...
@@ -166,14 +166,14 @@ des.o: des.c des.h $(des_headers)
@IF_ENABLE_ASM@%.$(OBJEXT)
:
%.asm asm.m4 machine.m4 config.m4
@IF_ENABLE_ASM@
$(M4)
$(srcdir)/asm.m4
machine.m4
config.m4
\
@IF_ENABLE_ASM@
`test
-f
$<
||
echo
'$(srcdir)/'
`
$<
>$*.s
@IF_ENABLE_ASM@
$<
>$*.s
@IF_ENABLE_ASM@
$(CC)
$(CFLAGS)
$(CCPIC_MAYBE)
-c
$*.s
-o
$@
@IF_ENABLE_ASM@
echo
>$*.d
# All assembler files should use pic-code only.
@IF_ENABLE_ASM@%.p$(OBJEXT)
:
%.asm asm.m4 machine.m4 config.m4
@IF_ENABLE_ASM@
$(M4)
$(srcdir)/asm.m4
machine.m4
config.m4
\
@IF_ENABLE_ASM@
`test
-f
$<
||
echo
'$(srcdir)/'
`
$<
>$*.s
@IF_ENABLE_ASM@
$<
>$*.s
@IF_ENABLE_ASM@
$(CC)
$(CFLAGS)
$(CCPIC)
-c
$*.s
-o
$@
@IF_ENABLE_ASM@
echo
>$*.d
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment