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

(%.o: %.asm): Create an empty (and unused)

dependency file, to make the make/automake dependency tracking
happier.

Rev: src/nettle/Makefile.am:1.38
parent d90b92d9
No related branches found
No related tags found
No related merge requests found
...@@ -61,11 +61,14 @@ SUFFIXES = .asm ...@@ -61,11 +61,14 @@ 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?
# NOTE: We create an empty .deps-file, to make the make/automake
# dependency tracking happier.
%.o: %.asm asm.m4 machine.m4 config.m4 %.o: %.asm asm.m4 machine.m4 config.m4
$(M4) $(srcdir)/asm.m4 machine.m4 config.m4 \ $(M4) $(srcdir)/asm.m4 machine.m4 config.m4 \
`test -f $< || echo '$(srcdir)/'`$< >tmp-$*.s `test -f $< || echo '$(srcdir)/'`$< >tmp-$*.s
$(COMPILE) -c tmp-$*.s -o $@ $(COMPILE) -c tmp-$*.s -o $@
$(RM_TMP) tmp-$*.s $(RM_TMP) tmp-$*.s
echo >.deps/$*.Po
%.html : %.texinfo %.html : %.texinfo
(cd $(srcdir) \ (cd $(srcdir) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment