14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
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
22 #
23 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 # Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com>
26 #
27
28 include $(SRC)/Makefile.master
29
30 FILES= \
31 $(MACH)_cc_map.noexeglobs \
32 $(MACH)_gcc_map.noexeglobs
33
34 $(BUILD64)FILES += \
35 $(MACH64)_cc_map.noexeglobs \
36 $(MACH64)_gcc_map.noexeglobs
37
38 SYMS1= syms.1
39 SYMS2= syms.2
40 MAIN1= main.1
41 MAIN2= main.2
42
43 TEMPLATE1= map.noexeglobs.1.template
44 TEMPLATE2= map.noexeglobs.2.template
45
46 all install: $(FILES)
47
48 lint:
49
50 clean:
51 $(RM) $(SYMS1) $(SYMS2) $(MAIN1) $(MAIN2)
52
53 clobber: clean
|
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
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
22 #
23 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 # Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com>
26 #
27
28 include $(SRC)/Makefile.master
29
30 FILES= \
31 $(MACH)_cc_map.noexeglobs \
32 $(MACH)_gcc_map.noexeglobs
33
34 NATIVE_LIBS = libc.so
35 LDFLAGS += -B direct
36
37 $(BUILD64)FILES += \
38 $(MACH64)_cc_map.noexeglobs \
39 $(MACH64)_gcc_map.noexeglobs
40
41 SYMS1= syms.1
42 SYMS2= syms.2
43 MAIN1= main.1
44 MAIN2= main.2
45
46 TEMPLATE1= map.noexeglobs.1.template
47 TEMPLATE2= map.noexeglobs.2.template
48
49 all install: $(FILES)
50
51 lint:
52
53 clean:
54 $(RM) $(SYMS1) $(SYMS2) $(MAIN1) $(MAIN2)
55
56 clobber: clean
|