]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
* Makefile.in: In the assembler rules, there's no need to look in
authorNiels Möller <nisse@lysator.liu.se>
Wed, 20 Oct 2004 16:29:58 +0000 (18:29 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Wed, 20 Oct 2004 16:29:58 +0000 (18:29 +0200)
$(srcdir) for the input file.

Rev: src/nettle/Makefile.in:1.4

Makefile.in

index 38d53644f3b1148f860db31c9a46f03ab2ca2282..aa730e378a742584d59e8882fcf9e762a43ccb8f 100644 (file)
@@ -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