Merge commit 'b1e7e97d3b60469b243b3b2e22c7d8cbd11c7c90'
[unleashed.git] / usr / src / cmd / nvmeadm / Makefile
blob28c10dcef3a09677e65a59ca84dc7823a706d31b
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.
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.
13 # Copyright 2015 Nexenta Systems, Inc.
14 # Copyright (c) 2018, Joyent, Inc.
18 PROG= nvmeadm
20 OBJS= nvmeadm.o nvmeadm_dev.o nvmeadm_print.o
21 SRCS= $(OBJS:%.o=%.c)
23 include ../Makefile.cmd
24 include ../Makefile.ctf
26 .KEEP_STATE:
28 LDLIBS += -ldevinfo
29 C99MODE= $(C99_ENABLE)
31 all: $(PROG)
33 $(PROG): $(OBJS)
34 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
35 $(POST_PROCESS)
37 %.o: %.c
38 $(COMPILE.c) $<
39 $(POST_PROCESS_O)
41 install: all $(ROOTUSRSBINPROG)
43 clean:
44 $(RM) $(OBJS) $(PROG)
46 include ../Makefile.targ