-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.mk
79 lines (66 loc) · 1.79 KB
/
conf.mk
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Variables for configuring makefile
# Seperated into seperate file not only for modularity,
# but so bash scripts etc. can read it,
VERSION=0.0.1
CC=gcc
LD=ar
AR=ar
LN=ln
SRC=src
INC=include
OBJ=obj
STD=c99
FOPTIONS=no-diagnostics-show-caret \
diagnostics-color=always
WARNINGS=all no-unused-parameter extra pedantic \
missing-prototypes fatal-errors format \
conversion declaration-after-statement \
error
LINKS=ncursesw
INCLUDES=include/ src/ test/
TEST_NAMES=unit_table unit_vec unit_buffer unit_ui_text
SRC_NAMES=\
core \
\
err \
hook \
mode \
\
win/label \
win/pos \
win/select \
win/size \
win/win \
win/iter \
\
buffer/buffer \
buffer/chunk \
buffer/line \
buffer/deferline \
buffer/log \
\
container/table \
container/vec \
container/hashes \
\
ui/ui \
ui/sbar \
ui/face \
ui/util \
ui/updates \
ui/text \
\
ui/win/win \
ui/win/content \
ui/win/frame \
\
io/file \
io/key \
io/keymap \
io/listener \
\
cursor/cursor \
cursor/point \
cursor/region \
cursor/snap
DEPS_FILE=deps.mk