-
Notifications
You must be signed in to change notification settings - Fork 3
/
info.mak
39 lines (35 loc) · 1.67 KB
/
info.mak
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
.NOTPARALLEL: logo
#-------------------------------------------------------------------------------
.PHONY: logo info
info: logo
$(info install dir = $(PREFIX)/lib and $(PREFIX)/include )
$(info compiler = $(shell $(CXX) --version))
$(info compil. options = $(OPTS))
$(info compil. flags = $(CXXFLAGS) $(OPTS) $(INC) $(DEF) -fPIC -MMD)
$(info linker flags = -shared $(LDFLAGS))
$(info using arch file = $(ARCH_FILE) )
$(info ---------------------------------)
$(info SOURCES)
$(info - SRC = $(SRC))
$(info - HEAD = $(HEAD))
$(info - HEAD = $(call to_list,$(HEAD)))
$(info - OBJ = $(OBJ))
$(info - DEP = $(DEP))
$(info ---------------------------------)
$(info TESTING:)
$(info - TEST_DIR = $(TEST_DIR))
$(info - TEST_DIR = $(TEST_DIR)/$(OBJ_DIR))
$(info - test SRC = $(TSRC))
$(info - test OBJ = $(TOBJ))
$(info - test DEP = $(TDEP))
$(info ---------------------------------)
logo:
$(info )
$(info ██╗ ██╗██████╗ ██╗ ██████╗ ██████╗ )
$(info ██║ ██║╚════██╗██║ ██╔══██╗██╔══██╗ )
$(info ███████║ █████╔╝██║ ██████╔╝██████╔╝ )
$(info ██╔══██║ ╚═══██╗██║ ██╔═══╝ ██╔══██╗ )
$(info ██║ ██║██████╔╝███████╗██║ ██║ ██║ )
$(info ╚═╝ ╚═╝╚═════╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ )
$(info )
$(info ----------------------------------------------- )