diff options
author | bde <bde@FreeBSD.org> | 1995-07-12 18:35:45 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-07-12 18:35:45 +0000 |
commit | 299beb985009494a0896ba39f65656995b728e08 (patch) | |
tree | e1b1742c3c7835d3132c89edaa98b4576fe793b7 /usr.sbin/ctm | |
parent | 7fafe8707765200cebb020c006c748f7d50450ff (diff) | |
download | FreeBSD-src-299beb985009494a0896ba39f65656995b728e08.zip FreeBSD-src-299beb985009494a0896ba39f65656995b728e08.tar.gz |
Remove -g from CFLAGS.
Diffstat (limited to 'usr.sbin/ctm')
-rw-r--r-- | usr.sbin/ctm/ctm/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/ctm/ctm_rmail/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/ctm/ctm_smail/Makefile | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/ctm/ctm/Makefile b/usr.sbin/ctm/ctm/Makefile index eac2620..567b203 100644 --- a/usr.sbin/ctm/ctm/Makefile +++ b/usr.sbin/ctm/ctm/Makefile @@ -6,7 +6,7 @@ # this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp # ---------------------------------------------------------------------------- # -# $Id: Makefile,v 1.7 1995/03/04 20:36:44 phk Exp $ +# $Id: Makefile,v 1.8 1995/03/25 18:14:22 joerg Exp $ # PROG= ctm @@ -17,7 +17,7 @@ LDADD+= -lmd DPADD+= ${LIBMD} MAN1= ctm.1 MAN5= ctm.5 -CFLAGS+= -Wall -g +CFLAGS+= -Wall .if exists(${.CURDIR}/../../Makefile.inc) .include "${.CURDIR}/../../Makefile.inc" diff --git a/usr.sbin/ctm/ctm_rmail/Makefile b/usr.sbin/ctm/ctm_rmail/Makefile index 274a79d..cb672f2 100644 --- a/usr.sbin/ctm/ctm_rmail/Makefile +++ b/usr.sbin/ctm/ctm_rmail/Makefile @@ -1,6 +1,6 @@ PROG= ctm_rmail SRCS= ctm_rmail.c error.c -CFLAGS+= -Wall -g +CFLAGS+= -Wall MLINKS+= ctm_rmail.1 ctm_smail.1 .include <bsd.prog.mk> diff --git a/usr.sbin/ctm/ctm_smail/Makefile b/usr.sbin/ctm/ctm_smail/Makefile index 085899c..e9eb846 100644 --- a/usr.sbin/ctm/ctm_smail/Makefile +++ b/usr.sbin/ctm/ctm_smail/Makefile @@ -1,7 +1,7 @@ PROG= ctm_smail SRCS= ctm_smail.c error.c NOMAN= 1 -CFLAGS+= -Wall -g -I${.CURDIR}/../ctm_rmail +CFLAGS+= -Wall -I${.CURDIR}/../ctm_rmail +.PATH: ${.CURDIR}/../ctm_rmail .include <bsd.prog.mk> -.PATH: ${.CURDIR}/../ctm_rmail |