diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-10-23 13:14:38 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-10-23 13:14:38 +0000 |
commit | 0d9bd07968d409a80abe35559697b1985274468c (patch) | |
tree | 618c29475673d82272d37029b0aed8d407e776b6 /sys/arch/mac68k/Makefile | |
parent | 83078891078339cc5cc8475c3aba57e7357bc1ea (diff) |
correct obj building
Diffstat (limited to 'sys/arch/mac68k/Makefile')
-rw-r--r-- | sys/arch/mac68k/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/mac68k/Makefile b/sys/arch/mac68k/Makefile index 37f084e42df..54684c486da 100644 --- a/sys/arch/mac68k/Makefile +++ b/sys/arch/mac68k/Makefile @@ -13,6 +13,8 @@ SMAC68K= ../m68k/m68k/*.c ../m68k/include/*.h \ ../mac68k/dev/*.[ch] AMAC68K= ../m68k/m68k/*.s ../mac68k/mac68k/*.s +SUBDIR=../m68k + # Directories in which to place mac68k tags links DMAC68K= mac68k dev include @@ -27,5 +29,7 @@ links: -for i in ${DMAC68K}; do \ cd $$i && rm -f tags; ln -s ../tags tags; done -.include <bsd.prog.mk> +obj: _SUBDIRUSE +.include <bsd.prog.mk> +.include <bsd.subdir.mk> |