aw: remove support for -b -s and -T
[unleashed.git] / usr / src / tools / btxld / Makefile
blob65dfdd38eea0612a3d4a91209d0d6af15e6062f3
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>
16 include ../Makefile.tools
18 .KEEP_STATE:
20 VPATH= .:$(SRC)/cmd/boot/common
22 PROG= btxld
23 MAN= btxld.8
24 SRCS= btxld.c elfh.c version.c bblk_einfo.c mboot_extra.c boot_utils.c
25 OBJS= btxld.o elfh.o version.o bblk_einfo.o mboot_extra.o boot_utils.o
26 LDLIBS += -lmd5
27 C99MODE=$(C99_ENABLE)
28 CPPFLAGS += -I$(SRC)/uts/common -I$(SRC)/cmd/boot/common
29 CERRWARN += -_gcc=-Wno-uninitialized
31 all: $(PROG)
33 $(PROG): $(OBJS)
34 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
35 $(POST_PROCESS)
37 install: all .WAIT $(ROOTONBLDMACHPROG)
39 clean:
40 $(RM) $(OBJS)
42 include ../Makefile.targ