Remove -g from CFLAGS.

This commit is contained in:
Bruce Evans 1995-07-12 18:35:45 +00:00
parent e1086b16a9
commit 0a49b28a4f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9495
3 changed files with 5 additions and 5 deletions

View file

@ -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"

View file

@ -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>

View file

@ -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