18 # information: Portions Copyright [yyyy] [name of copyright owner]
19 #
20 # CDDL HEADER END
21 #
22 #
23 # Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26 # cmd/projects/Makefile
27 #
28
29 PROG= projects
30
31 include ../Makefile.cmd
32
33 LDLIBS += -lproject
34
35 .KEEP_STATE:
36
37 CFLAGS += $(CCVERBOSE)
38 CERRWARN += -_gcc=-Wno-uninitialized
39
40 all: $(PROG)
41
42 install: all $(ROOTPROG)
43
44 clean:
45
46 lint: lint_PROG
47
48 include ../Makefile.targ
|
18 # information: Portions Copyright [yyyy] [name of copyright owner]
19 #
20 # CDDL HEADER END
21 #
22 #
23 # Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26 # cmd/projects/Makefile
27 #
28
29 PROG= projects
30
31 include ../Makefile.cmd
32
33 LDLIBS += -lproject
34
35 .KEEP_STATE:
36
37 CFLAGS += $(CCVERBOSE)
38 CERRWARN += $(CNOWARN_UNINIT)
39
40 all: $(PROG)
41
42 install: all $(ROOTPROG)
43
44 clean:
45
46 lint: lint_PROG
47
48 include ../Makefile.targ
|