Print this page
9852 enable ld(1) guidance and deflib assertions for the illumos build
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/tools/btxld/Makefile
+++ new/usr/src/tools/btxld/Makefile
1 1 #
2 2 # This file and its contents are supplied under the terms of the
3 3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 4 # You may only use this file in accordance with the terms of version
5 5 # 1.0 of the CDDL.
6 6 #
7 7 # A full copy of the text of the CDDL should have accompanied this
8 8 # source. A copy of the CDDL is also available via the Internet at
9 9 # http://www.illumos.org/license/CDDL.
10 10 #
11 11
12 12 #
13 13 # Copyright 2016 Toomas Soome <tsoome@me.com>
14 14 #
15 15
16 16 include ../Makefile.tools
17 17
18 18 .KEEP_STATE:
19 19
20 20 COMMON_SRC= $(SRC)/cmd/boot/common
21 21 EINFO_SRC= $(COMMON_SRC)/bblk_einfo.c
22 22 UTILS_SRC= $(COMMON_SRC)/boot_utils.c
↓ open down ↓ |
22 lines elided |
↑ open up ↑ |
23 23 EXTRA_SRC= $(COMMON_SRC)/mboot_extra.c
24 24
25 25 PROG= btxld
26 26 MAN1ONBLDFILES= btxld.1onbld
27 27 SRCS= btxld.c elfh.c version.c $(UTILS_SRC) $(EINFO_SRC) $(EXTRA_SRC)
28 28 OBJS= btxld.o elfh.o version.o bblk_einfo.o mboot_extra.o boot_utils.o
29 29 LDLIBS += -lmd5
30 30 CSTD= $(CSTD_GNU99)
31 31 CPPFLAGS += -I$(SRC)/uts/common -I$(COMMON_SRC)
32 32
33 +NATIVE_LIBS += libmd5.so
34 +
33 35 $(ROOTONBLDMAN1ONBLDFILES) := FILEMODE= 644
34 36
35 37 all: $(PROG) $(MAN1ONBLDFILES)
36 38
37 39 $(PROG): $(OBJS)
38 40 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
39 41 $(POST_PROCESS)
40 42
41 43 install: all .WAIT $(ROOTONBLDMACHPROG) $(ROOTONBLDMAN1ONBLDFILES)
42 44
43 45 clean:
44 46 $(RM) $(OBJS)
45 47
46 48 %.o: %.c
47 49 $(COMPILE.c) -o $@ $<
48 50 $(POST_PROCESS_O)
49 51
50 52 %.o: $(COMMON_SRC)/%.c
51 53 $(COMPILE.c) -o $@ $<
52 54 $(POST_PROCESS_O)
53 55
54 56 include ../Makefile.targ
↓ open down ↓ |
12 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX