From 5eba90cca5249637f7ceabb5f922ed33729c7d73 Mon Sep 17 00:00:00 2001 From: Mark Linton Date: Mon, 21 Feb 1983 18:57:49 -0800 Subject: [PATCH] changed DEST and DESTDIR interaction so installed in /usr/ucb/dbx rather than //usr/ucb/dbx SCCS-vsn: old/dbx/Makefile 4.2 --- usr/src/old/dbx/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/usr/src/old/dbx/Makefile b/usr/src/old/dbx/Makefile index 7e807d9caa..6c254b2908 100644 --- a/usr/src/old/dbx/Makefile +++ b/usr/src/old/dbx/Makefile @@ -1,4 +1,4 @@ -# @(#)Makefile 4.1 (Berkeley) %G% +# @(#)Makefile 4.2 (Berkeley) %G% # # make file for debugger "dbx" # @@ -14,14 +14,14 @@ .SUFFIXES: .h .c .s .o AOUT = tdbx -DEST = /usr/ucb/dbx -DESTDIR = +DESTDIR = +DEST = ${DESTDIR}/usr/ucb/dbx LIBRARIES = CC = cc CFLAGS = # -g -LDFLAGS = # -g +LDFLAGS = -g OBJ = \ y.tab.o \ @@ -115,7 +115,7 @@ clean: rm -f ${HDR} ${OBJ} y.tab.c y.tab.h ${AOUT} core install: - install -s ${AOUT} ${DESTDIR}/${DEST} + install -s ${AOUT} ${DEST} # # Header dependencies are purposely incomplete since header files -- 2.20.1