Merge remote-tracking branch 'origin/master'
[unleashed/lotheac.git] / usr / src / tools / btxld / Makefile
blobff220fdc8f625a409e9d5d64de3baf6af67a5295
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.
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.
13 # Copyright 2016 Toomas Soome <tsoome@me.com>
15 # Copyright (c) 2018, Joyent, Inc.
17 include ../Makefile.tools
19 .KEEP_STATE:
21 COMMON_SRC= $(SRC)/cmd/boot/common
22 EINFO_SRC= $(COMMON_SRC)/bblk_einfo.c
23 UTILS_SRC= $(COMMON_SRC)/boot_utils.c
24 EXTRA_SRC= $(COMMON_SRC)/mboot_extra.c
26 PROG= btxld
27 MAN1ONBLDFILES= btxld.1
28 SRCS= btxld.c elfh.c version.c $(UTILS_SRC) $(EINFO_SRC) $(EXTRA_SRC)
29 OBJS= btxld.o elfh.o version.o bblk_einfo.o mboot_extra.o boot_utils.o
30 LDLIBS += -lmd5
31 CSTD= $(CSTD_GNU99)
32 CPPFLAGS += -I$(COMMON_SRC) -idirafter $(SRCTOP)/include
34 # not linted
35 SMATCH=off
37 $(ROOTONBLDMAN1ONBLDFILES) := FILEMODE= 644
39 all: $(PROG) $(MAN1ONBLDFILES)
41 $(PROG): $(OBJS)
42 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
43 $(POST_PROCESS)
45 install: all .WAIT $(ROOTONBLDMACHPROG) $(ROOTONBLDMAN1ONBLDFILES)
47 clean:
48 $(RM) $(OBJS)
50 %.o: %.c
51 $(COMPILE.c) -o $@ $<
52 $(POST_PROCESS_O)
54 %.o: $(COMMON_SRC)/%.c
55 $(COMPILE.c) -o $@ $<
56 $(POST_PROCESS_O)
58 include ../Makefile.targ