From: Taylor R. Campbell Date: Sun, 8 Mar 2009 21:47:00 +0000 (+0000) Subject: Use $< and $@ rather than $* because GNU make and BSD make have X-Git-Tag: 20090517-FFI~58 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=5af7ebbfb31f60e31d1bd1738227548b76d07430;p=mit-scheme.git Use $< and $@ rather than $* because GNU make and BSD make have different interpretations of $* but seem to agree on $< and $@ for the ways we use them. POSIX agrees too. --- diff --git a/v7/src/microcode/makegen/Makefile.in.in b/v7/src/microcode/makegen/Makefile.in.in index c1ef3f42f..2b5917b4e 100644 --- a/v7/src/microcode/makegen/Makefile.in.in +++ b/v7/src/microcode/makegen/Makefile.in.in @@ -1,6 +1,6 @@ # -*- Makefile -*- # -# $Id: Makefile.in.in,v 1.65 2008/09/17 16:36:28 riastradh Exp $ +# $Id: Makefile.in.in,v 1.66 2009/03/08 21:47:00 riastradh Exp $ # # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, # 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, @@ -162,13 +162,13 @@ C_CLEAN_FILES = utabmd.c utabmd.bci .SUFFIXES: .c .o .s .m4 .c.o: - $(COMPILE) -o $*.o -c $*.c + $(COMPILE) -o $@ -c $< .m4.s: - $(EXPAND) $*.m4 > $*.s + $(EXPAND) $< > $@ .s.o: - $(ASSEMBLE) -o $*.o $*.s + $(ASSEMBLE) -o $@ $< # **** Main rules ****