btxld: Makefile fix and revert to use endian.h
[unleashed.git] / usr / src / tools / btxld / Makefile
blobaabc2bd591264a94b93fc898aacb620e485d6f8d
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 COMMON_SRC= $(SRC)/cmd/boot/common
21 EINFO_SRC= $(COMMON_SRC)/bblk_einfo.c
22 UTILS_SRC= $(COMMON_SRC)/boot_utils.c
23 EXTRA_SRC= $(COMMON_SRC)/mboot_extra.c
25 PROG= btxld
26 MAN= btxld.8
27 SRCS= btxld.c elfh.c version.c $(UTILS_SRC) $(EINFO_SRC) $(EXTRA_SRC)
28 OBJS= btxld.o elfh.o version.o bblk_einfo.o mboot_extra.o boot_utils.o
29 LDLIBS += -lmd5
30 C99MODE= $(C99_ENABLE)
31 CPPFLAGS += -I$(SRC)/uts/common -I$(COMMON_SRC)
33 # Following is needed by sources in $(COMMON_SRC)
34 CERRWARN += -_gcc=-Wno-uninitialized
36 all: $(PROG)
38 $(PROG): $(OBJS)
39 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
40 $(POST_PROCESS)
42 install: all .WAIT $(ROOTONBLDMACHPROG)
44 clean:
45 $(RM) $(OBJS)
47 %.o: %.c
48 $(COMPILE.c) -o $@ $<
49 $(POST_PROCESS_O)
51 %.o: $(COMMON_SRC)/%.c
52 $(COMPILE.c) -o $@ $<
53 $(POST_PROCESS_O)
55 include ../Makefile.targ