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
27 PROG= amt
28 OBJS= amt.o
29 SRCS= $(OBJS:%.o=../%.c)
30
31 include ../../Makefile.cmd
32
33 LDLIBS += -lelf
34
35 LINTFLAGS += -erroff=E_NAME_USED_NOT_DEF2
36 LINTFLAGS64 += -erroff=E_NAME_USED_NOT_DEF2
37
38 CERRWARN += -_gcc=-Wno-uninitialized
39
40 CLEANFILES += $(PROG) $(OBJS)
41
42 .KEEP_STATE:
43
44 all: $(PROG)
45
46 $(PROG): $(OBJS)
47 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
48 $(POST_PROCESS)
49
50 lint: lint_SRCS
51
52 %.o: ../%.c
53 $(COMPILE.c) $<
54
55 clean:
56 $(RM) $(CLEANFILES)
57
58 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
27 PROG= amt
28 OBJS= amt.o
29 SRCS= $(OBJS:%.o=../%.c)
30
31 include ../../Makefile.cmd
32
33 LDLIBS += -lelf
34
35 LINTFLAGS += -erroff=E_NAME_USED_NOT_DEF2
36 LINTFLAGS64 += -erroff=E_NAME_USED_NOT_DEF2
37
38 CERRWARN += $(CNOWARN_UNINIT)
39
40 CLEANFILES += $(PROG) $(OBJS)
41
42 .KEEP_STATE:
43
44 all: $(PROG)
45
46 $(PROG): $(OBJS)
47 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
48 $(POST_PROCESS)
49
50 lint: lint_SRCS
51
52 %.o: ../%.c
53 $(COMPILE.c) $<
54
55 clean:
56 $(RM) $(CLEANFILES)
57
58 include ../../Makefile.targ
|