From f3d015bd93dd740e5370b0f6192e86caa0befb95 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Fri, 6 Mar 1998 13:44:12 +0000 Subject: [PATCH] Use the standard method for avoiding concurrent builds of multiple targets built by a single rule (.ORDER: foo.c foo.h ...). --- lib/libss/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/libss/Makefile b/lib/libss/Makefile index 3d37cf0386d..a5cc0b42c86 100644 --- a/lib/libss/Makefile +++ b/lib/libss/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.17 1997/02/22 15:08:00 peter Exp $ +# $Id: Makefile,v 1.18 1998/03/06 08:26:00 bde Exp $ LIB= ss SRCS= data.c error.c execute_cmd.c help.c invocation.c list_rqs.c \ @@ -14,9 +14,8 @@ LIBDESTDIR= ${.CURDIR}/../libcom_err DPADD= ${LIBDESTDIR}/libcom_err.a LDADD= -L${LIBDESTDIR} -lcom_err -ss_err.c: ss_err.h - -ss_err.h: ${.CURDIR}/ss_err.et +.ORDER: ss_err.c ss_err.h +ss_err.c ss_err.h: ${.CURDIR}/ss_err.et test -e ss_err.et || ln -s ${.CURDIR}/ss_err.et . compile_et ss_err.et -test -h ss_err.et && rm -f ss_err.et