e82b0b99c1
make DEBUG_FLAGS=-g2 You can compile something for debugging at debugging level 2. It will also take care not to strip the resulting executable(s).
17 lines
226 B
Makefile
17 lines
226 B
Makefile
# $Id: bsd.own.mk,v 1.1 1994/08/04 21:10:08 wollman Exp $
|
|
|
|
BINGRP?= bin
|
|
BINOWN?= bin
|
|
BINMODE?= 555
|
|
|
|
.if !defined(DEBUG_FLAGS)
|
|
STRIP?= -s
|
|
.endif
|
|
|
|
COPY?= -c
|
|
|
|
MANDIR?= /usr/share/man/man
|
|
MANGRP?= bin
|
|
MANOWN?= bin
|
|
MANMODE?= 444
|