Formerly m68k/Makefile.~5~

This commit is contained in:
Roland McGrath 1993-03-17 18:32:04 +00:00
parent 009d15de1b
commit d42a69dd83

View file

@ -7,5 +7,5 @@ crypt := crypt.sun3 # Use crypt/crypt.sun3.S.
# Disgusting magic to get `#'s into the asm code.
define compile-command.S
$(CC) $(CPPFLAGS) -E $< \
| sed 's/(@@@Hash-Here@@@)/#/g' | $(AS) $(ASFLAGS) -o $@
| sed -e '/^#/d' -e 's/(@@@Hash-Here@@@)/#/g' | $(AS) $(ASFLAGS) -o $@
endef