diff options
| author | christos <christos@NetBSD.org> | 2009-01-15 15:57:18 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2009-01-15 15:57:18 +0000 |
| commit | 19540887f29c2986a06ec8c00fa2f1b7d4e45c04 (patch) | |
| tree | 4bae09cd7565fcfeeb6936f2d82629819080dde2 /usr.sbin/sup | |
| parent | dfcfa95743360ab779b3047a955b93de9b6a4a3e (diff) | |
- Don't use TOOL_SED; we are not a regular Makefile
- PREFIX defaults to /usr/pkg
- use -g
- delete errmsg.c
Diffstat (limited to 'usr.sbin/sup')
| -rw-r--r-- | usr.sbin/sup/source/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/sup/source/Makefile b/usr.sbin/sup/source/Makefile index c5551fc9748..641bf26f1fa 100644 --- a/usr.sbin/sup/source/Makefile +++ b/usr.sbin/sup/source/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2008/10/25 22:35:37 apb Exp $ +# $NetBSD: Makefile,v 1.32 2009/01/15 15:57:18 christos Exp $ # Copyright (c) 1992,1991 Carnegie Mellon University # All Rights Reserved. # @@ -50,9 +50,9 @@ #SITE = FREEBSD #SITE = CMUCS SITE1 != uname -s | tr '[a-z]' '[A-Z]' \ - | ${TOOL_SED} -e s/_.*//g + | sed -e s/_.*//g SITE2 = $(shell uname -s | tr '[a-z]' '[A-Z]' \ - | ${TOOL_SED} -e s/_.*//g) + | sed -e s/_.*//g) SITE = ${SITE1}${SITE2} TARDIR = sup-0.3 @@ -74,17 +74,17 @@ NON_MACH_DEFINES = -UMACH #INSTALLATION PARAMETERS -PREFIX ?= /usr/local/ +PREFIX ?= /usr/pkg/ NETBSD_BINDIR = ${PREFIX}/sbin NETBSD_MAN1 = ${PREFIX}/man/man1 NETBSD_MAN8 = ${PREFIX}/man/man8 -CFLAGS = ${DEFS} -O -I. +CFLAGS = ${DEFS} -O -I. -g SUPCL = supcmain.o supcvers.o supcparse.o supcname.o \ supcmisc.o supcmeat.o SUPS = scm.o scmio.o stree.o log.o supmsg.o netcrypt.o -EXTRA = atoo.o errmsg.o expand.o ffilecopy.o filecopy.o \ +EXTRA = atoo.o expand.o ffilecopy.o filecopy.o \ nxtarg.o path.o quit.o read_line.o run.o estrdup.o \ skipto.o vprintf.o setproctitle.o |
