forked from arthur-simchaev-wdc/ufs-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
55 lines (45 loc) · 1.22 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2019 Western Digital Corporation or its affiliates
export CC := $(CROSS_COMPILE)gcc
AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2
CFLAGS ?= -g -O2 -static
ifneq ($(CROSS_COMPILE),)
LDFLAGS += -static
endif
#CXXFLAGS = -DDEBUG
objects = \
ufs.o \
ufs_cmds.o \
options.o \
scsi_bsg_util.o \
ufs_err_hist.o \
unipro.o \
ufs_ffu.o \
ufs_vendor.o\
hmac_sha2.o \
sha2.o \
ufs_rpmb.o \
ufs_hmr.o
CHECKFLAGS = -Wall -Wundef -Wno-missing-braces
DEPFLAGS = -Wp,-MMD,$(@D)/.$(@F).d,-MT,$@
override CFLAGS := $(CHECKFLAGS) $(AM_CFLAGS) $(CFLAGS) $(INC_DIR) $(CXXFLAGS)
progs = ufs-utils
ifdef C
check = sparse $(CHECKFLAGS)
endif
.c.o:
ifdef C
$(check) $<
endif
$(CC) $(CPPFLAGS) $(CFLAGS) $(DEPFLAGS) -c $< -o $@
ufs-utils:$(objects)
$(CC) $(CFLAGS) -o $@ $(objects) $(LDFLAGS) $(LIBS)
help:
@echo "\033[31m==============Build Instructions==============\033[0m"
@echo "\033[92mTo build ufs_utils follow the following steps\033[0m"
@echo "\033[92m1 Set CROSS_COMPILE variable\033[0m"
@echo "\033[92m2 Build the tool using \"make\"\033[0m"
@echo "\033[92m3 Clean the tool using \"make clean\"\033[0m"
clean:
@rm -f $(progs) $(objects) .*.o.d
.PHONY: all clean