Makefile (bd0ce624be4492bab2f6c53383a40618647aba28) Makefile (93b8872871607b3d21317283c1230b2a4a00920b)
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source. A copy of the CDDL is also available via the Internet at
9# http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright 2016 Toomas Soome <tsoome@me.com>
14#
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source. A copy of the CDDL is also available via the Internet at
9# http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright 2016 Toomas Soome <tsoome@me.com>
14#
15# Copyright (c) 2018, Joyent, Inc.
15
16include ../Makefile.tools
17
18.KEEP_STATE:
19
20COMMON_SRC= $(SRC)/cmd/boot/common
21EINFO_SRC= $(COMMON_SRC)/bblk_einfo.c
22UTILS_SRC= $(COMMON_SRC)/boot_utils.c
23EXTRA_SRC= $(COMMON_SRC)/mboot_extra.c
24
25PROG= btxld
26MAN1ONBLDFILES= btxld.1onbld
27SRCS= btxld.c elfh.c version.c $(UTILS_SRC) $(EINFO_SRC) $(EXTRA_SRC)
28OBJS= btxld.o elfh.o version.o bblk_einfo.o mboot_extra.o boot_utils.o
29LDLIBS += -lmd5
30CSTD= $(CSTD_GNU99)
31CPPFLAGS += -I$(SRC)/uts/common -I$(COMMON_SRC)
32
16
17include ../Makefile.tools
18
19.KEEP_STATE:
20
21COMMON_SRC= $(SRC)/cmd/boot/common
22EINFO_SRC= $(COMMON_SRC)/bblk_einfo.c
23UTILS_SRC= $(COMMON_SRC)/boot_utils.c
24EXTRA_SRC= $(COMMON_SRC)/mboot_extra.c
25
26PROG= btxld
27MAN1ONBLDFILES= btxld.1onbld
28SRCS= btxld.c elfh.c version.c $(UTILS_SRC) $(EINFO_SRC) $(EXTRA_SRC)
29OBJS= btxld.o elfh.o version.o bblk_einfo.o mboot_extra.o boot_utils.o
30LDLIBS += -lmd5
31CSTD= $(CSTD_GNU99)
32CPPFLAGS += -I$(SRC)/uts/common -I$(COMMON_SRC)
33
34# not linted
35SMATCH=off
36
33$(ROOTONBLDMAN1ONBLDFILES) := FILEMODE= 644
34
35all: $(PROG) $(MAN1ONBLDFILES)
36
37$(PROG): $(OBJS)
38 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
39 $(POST_PROCESS)
40

--- 14 unchanged lines hidden ---
37$(ROOTONBLDMAN1ONBLDFILES) := FILEMODE= 644
38
39all: $(PROG) $(MAN1ONBLDFILES)
40
41$(PROG): $(OBJS)
42 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
43 $(POST_PROCESS)
44

--- 14 unchanged lines hidden ---