xref: /illumos-gate/usr/src/cmd/nvmeadm/Makefile (revision 3b436d06bb95fd180ef7416b2b1b9972e2f2a513)
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source.  A copy of the CDDL is also available via the Internet at
9# http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright 2015 Nexenta Systems, Inc.
14# Copyright (c) 2018, Joyent, Inc.
15#
16
17
18PROG= nvmeadm
19
20OBJS= nvmeadm.o nvmeadm_dev.o nvmeadm_print.o
21SRCS= $(OBJS:%.o=%.c)
22
23include ../Makefile.cmd
24include ../Makefile.ctf
25
26.KEEP_STATE:
27
28CFLAGS +=	$(CCVERBOSE)
29LDLIBS +=	-ldevinfo
30CSTD=	$(CSTD_GNU99)
31
32# error: cannot size expression
33SMATCH=off
34
35all: $(PROG)
36
37$(PROG): $(OBJS)
38	$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
39	$(POST_PROCESS)
40
41%.o: %.c
42	$(COMPILE.c) $<
43	$(POST_PROCESS_O)
44
45install: all $(ROOTUSRSBINPROG)
46
47clean:
48	$(RM) $(OBJS) $(PROG)
49
50lint:	lint_SRCS
51
52include ../Makefile.targ
53