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
18 PROG= nvmeadm
19
20 OBJS= nvmeadm.o nvmeadm_dev.o nvmeadm_print.o
21 SRCS= $(OBJS:%.o=%.c)
22
23 include ../Makefile.cmd
24 include ../Makefile.ctf
25
26 .KEEP_STATE:
27
28 CFLAGS += $(CCVERBOSE)
29 LDLIBS += -ldevinfo
30 CSTD= $(CSTD_GNU99)
31
32 all: $(PROG)
33
34 $(PROG): $(OBJS)
35 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
36 $(POST_PROCESS)
37
38 %.o: %.c
39 $(COMPILE.c) $<
40 $(POST_PROCESS_O)
41
42 install: all $(ROOTUSRSBINPROG)
43
44 clean:
45 $(RM) $(OBJS) $(PROG)
46
47 lint: lint_SRCS
48
49 include ../Makefile.targ