use reachover relative paths in compat include files instead of

symlinking ufs include files into installboot and makefs tool objdirs
reviewed by lukem and thorpej on tech-toolchain
This commit is contained in:
dbj 2003-05-14 00:30:26 +00:00
parent f1e0ecadf7
commit 41b9cfff20
7 changed files with 17 additions and 18 deletions

View File

@ -0,0 +1,3 @@
/* $NetBSD: ffs_extern.h,v 1.1 2003/05/14 00:30:26 dbj Exp $ */
#include "../../../../sys/ufs/ffs/ffs_extern.h"

View File

@ -0,0 +1,3 @@
/* $NetBSD: fs.h,v 1.1 2003/05/14 00:30:26 dbj Exp $ */
#include "../../../../sys/ufs/ffs/fs.h"

View File

@ -0,0 +1,3 @@
/* $NetBSD: dinode.h,v 1.1 2003/05/14 00:30:26 dbj Exp $ */
#include "../../../../sys/ufs/ufs/dinode.h"

View File

@ -0,0 +1,3 @@
/* $NetBSD: dir.h,v 1.1 2003/05/14 00:30:27 dbj Exp $ */
#include "../../../../sys/ufs/ufs/dir.h"

View File

@ -0,0 +1,3 @@
/* $NetBSD: ufs_bswap.h,v 1.1 2003/05/14 00:30:27 dbj Exp $ */
#include "../../../../sys/ufs/ufs/ufs_bswap.h"

View File

@ -1,17 +1,9 @@
# $NetBSD: Makefile,v 1.7 2002/12/08 20:20:01 thorpej Exp $
# $NetBSD: Makefile,v 1.8 2003/05/14 00:30:27 dbj Exp $
HOSTPROGNAME= ${_TOOL_PREFIX}installboot
HOST_SRCDIR= usr.sbin/installboot
DPSRCS+= ufs.stamp
HOST_CPPFLAGS+= -I. -I${.CURDIR} -I${.CURDIR}/../mips-elf2ecoff
CLEANFILES+= ufs
.include "${.CURDIR}/../Makefile.host"
$(OBJS): ufs.stamp
ufs.stamp:
-rm -f ufs
ln -f -s ${.CURDIR}/../../sys/ufs ufs
@touch $@

View File

@ -1,17 +1,9 @@
# $NetBSD: Makefile,v 1.6 2002/12/08 20:20:02 thorpej Exp $
# $NetBSD: Makefile,v 1.7 2003/05/14 00:30:27 dbj Exp $
HOSTPROGNAME= ${_TOOL_PREFIX}makefs
HOST_SRCDIR= usr.sbin/makefs
DPSRCS+= ufs.stamp
HOST_CPPFLAGS+= -I.
CLEANFILES+= ufs
.include "${.CURDIR}/../Makefile.host"
$(OBJS): ufs.stamp
ufs.stamp:
-rm -f ufs
ln -f -s ${.CURDIR}/../../sys/ufs ufs
@touch $@