16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
22 # Use is subject to license terms.
23 #
24 # cmd/consadm/Makefile.com
25 #
26
27 PROG= consadm
28
29 COMMONOBJS= $(PROG).o utils.o
30 SRCS= ../$(PROG).c ../utils.c
31 OBJS= $(COMMONOBJS)
32
33 include ../../Makefile.cmd
34
35 CFLAGS += $(CCVERBOSE)
36 CERRWARN += -_gcc=-Wno-uninitialized
37 CPPFLAGS +=
38
39 FILEMODE = 0555
40
41 .KEEP_STATE:
42
43 all: $(PROG)
44
45 $(PROG): $(OBJS)
46 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
47 $(POST_PROCESS)
48
49 install: all $(ROOTUSRSBINPROG)
50 $(RM) $(ROOTUSRSBIN)/consadmd
51 $(LN) $(ROOTUSRSBINPROG) $(ROOTUSRSBIN)/consadmd
52
53 clean:
54 -$(RM) $(OBJS)
55
56 lint: lint_SRCS
|
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
22 # Use is subject to license terms.
23 #
24 # cmd/consadm/Makefile.com
25 #
26
27 PROG= consadm
28
29 COMMONOBJS= $(PROG).o utils.o
30 SRCS= ../$(PROG).c ../utils.c
31 OBJS= $(COMMONOBJS)
32
33 include ../../Makefile.cmd
34
35 CFLAGS += $(CCVERBOSE)
36 CERRWARN += $(CNOWARN_UNINIT)
37 CPPFLAGS +=
38
39 FILEMODE = 0555
40
41 .KEEP_STATE:
42
43 all: $(PROG)
44
45 $(PROG): $(OBJS)
46 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
47 $(POST_PROCESS)
48
49 install: all $(ROOTUSRSBINPROG)
50 $(RM) $(ROOTUSRSBIN)/consadmd
51 $(LN) $(ROOTUSRSBINPROG) $(ROOTUSRSBIN)/consadmd
52
53 clean:
54 -$(RM) $(OBJS)
55
56 lint: lint_SRCS
|