From: Guillermo J. Rozas Date: Wed, 5 Feb 1992 01:48:28 +0000 (+0000) Subject: Add dependencies from the .o files to the .s files to the .m4 files X-Git-Tag: 20090517-FFI~9862 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=eb8d5b07959938ea6c2f53f8da2dbd38a2b94fb5;p=mit-scheme.git Add dependencies from the .o files to the .s files to the .m4 files and xmakefile for systems with a compiler. --- diff --git a/v7/src/microcode/unxutl/ymkfile b/v7/src/microcode/unxutl/ymkfile index fd1589281..3b2089359 100644 --- a/v7/src/microcode/unxutl/ymkfile +++ b/v7/src/microcode/unxutl/ymkfile @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/unxutl/Attic/ymkfile,v 1.51 1992/02/03 23:54:38 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/unxutl/Attic/ymkfile,v 1.52 1992/02/05 01:48:28 jinx Exp $ Copyright (c) 1989-92 Massachusetts Institute of Technology @@ -170,6 +170,10 @@ MACHINE_SWITCHES = -DHAS_COMPILER_SUPPORT MACHINE_SOURCES = cmpint.c cmpaux-mc68k.m4 MACHINE_OBJECTS = cmpint.o cmpaux-mc68k.o GC_HEAD_FILES = gccode.h cmpgc.h cmpint-mc68k.h + +cmpaux-mc68k.o : cmpaux-mc68k.s +cmpaux-mc68k.s : cmpaux-mc68k.m4 xmakefile + #endif /* PROC_TYPE_68020 */ #if (PROC_TYPE == PROC_TYPE_68000) @@ -186,6 +190,10 @@ MACHINE_SWITCHES = -DHAS_COMPILER_SUPPORT MACHINE_SOURCES = cmpint.c cmpaux-vax.m4 MACHINE_OBJECTS = cmpint.o cmpaux-vax.o GC_HEAD_FILES = gccode.h cmpgc.h cmpint-vax.h + +cmpaux-vax.o : cmpaux-vax.s +cmpaux-vax.s : cmpaux-vax.m4 xmakefile + #endif /* PROC_TYPE_VAX */ #if (PROC_TYPE == PROC_TYPE_HPPA) @@ -196,6 +204,10 @@ MACHINE_SOURCES = cmpint.c cmpaux-hppa.m4 MACHINE_OBJECTS = cmpint.o cmpaux-hppa.o GC_HEAD_FILES = gccode.h cmpgc.h cmpint-hppa.h hppacache.h XTRA_TARGETS = hppacache + +cmpaux-hppa.o : cmpaux-hppa.s +cmpaux-hppa.s : cmpaux-hppa.m4 xmakefile + #endif /* PROC_TYPE_HPPA */ #if (PROC_TYPE == PROC_TYPE_MIPS) @@ -205,6 +217,10 @@ MACHINE_SWITCHES = -DHAS_COMPILER_SUPPORT MACHINE_SOURCES = cmpint.c cmpaux-mips.s MACHINE_OBJECTS = cmpint.o cmpaux-mips.o GC_HEAD_FILES = gccode.h cmpgc.h cmpint-mips.h + +cmpaux-mips.o : cmpaux-mips.s +cmpaux-mips.s : cmpaux-mips.m4 xmakefile + #endif /* PROC_TYPE_MIPS */ #ifndef PROC_TYPE_KNOWN