]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
(%.o: %.asm): Create an empty (and unused)
authorNiels Möller <nisse@lysator.liu.se>
Mon, 26 Aug 2002 20:23:45 +0000 (22:23 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Mon, 26 Aug 2002 20:23:45 +0000 (22:23 +0200)
dependency file, to make the make/automake dependency tracking
happier.

Rev: src/nettle/Makefile.am:1.38

Makefile.am

index 0e40abf87ee4dfb3c39ee5cb58b45e6a6d990441..608dda7f27bc35fd37f942be946e6ea0426f942b 100644 (file)
@@ -61,11 +61,14 @@ SUFFIXES = .asm
 RM_TMP = rm -f
 
 # FIXME: How to write this without using GNU make features?
+# NOTE: We create an empty .deps-file, to make the make/automake
+# dependency tracking happier.
 %.o: %.asm asm.m4 machine.m4 config.m4 
        $(M4) $(srcdir)/asm.m4 machine.m4 config.m4 \
                `test -f $< || echo '$(srcdir)/'`$< >tmp-$*.s
        $(COMPILE) -c tmp-$*.s -o $@
        $(RM_TMP) tmp-$*.s
+       echo >.deps/$*.Po
 
 %.html : %.texinfo
        (cd $(srcdir) \