7712 mandoc -Tlint does always exit with error code 0
[unleashed.git] / usr / src / cmd / lvm / md_monitord / sparc / Makefile
blobf9db2aa8b55a18ea5e9d452d22734ca42630a245
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License, Version 1.0 only
6 # (the "License"). You may not use this file except in compliance
7 # with the License.
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
20 # CDDL HEADER END
23 # Copyright 1996, 2000-2003 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
26 # Makefile for logical volume management
29 PROG= mdmonitord
31 OBJS= probedev.o \
32 md_monitord.o
33 SRCS= $(OBJS:%.o=../%.c)
35 include ../../../Makefile.cmd
36 include ../../Makefile.lvm
38 LDLIBS += -lmeta
40 DEFINES += -DDEBUG
41 CFLAGS += ${DEFINES}
45 lint := LINTFLAGS += -m
47 .KEEP_STATE:
49 %.o: ../%.c
50 $(COMPILE.c) $<
52 all: $(PROG)
54 $(PROG): $(OBJS)
55 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
56 $(POST_PROCESS)
58 ROOTUSRSBINPROG=$(PROG:%=$(ROOTUSRSBIN)/%)
59 install: all $(ROOTUSRSBINPROG)
61 cstyle:
62 ${CSTYLE} ${SRCS}
64 lint:
65 ${LINT.c} $(LINTFLAGS) ${SRCS}
67 clean:
68 ${RM} ${OBJS} *.o
70 include $(SRC)/cmd/Makefile.targ