Skip to content

Commit 9e04bb5

Browse files
committed
Add headers and includes to Makfile.conf
1 parent 3123c70 commit 9e04bb5

File tree

1 file changed

+86
-1
lines changed

1 file changed

+86
-1
lines changed

Makefile.conf

Lines changed: 86 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,90 @@
55
# heavy RAM usage peaks. Other than that the order is arbitrary.
66

77

8+
INCFILES = \
9+
sass.h \
10+
sass2scss.h \
11+
sass/base.h \
12+
sass/context.h \
13+
sass/functions.h \
14+
sass/values.h \
15+
sass/version.h
16+
17+
HPPFILES = \
18+
ast.hpp \
19+
ast2c.hpp \
20+
ast_def_macros.hpp \
21+
ast_fwd_decl.hpp \
22+
ast_helpers.hpp \
23+
ast_selectors.hpp \
24+
ast_supports.hpp \
25+
ast_values.hpp \
26+
backtrace.hpp \
27+
base64vlq.hpp \
28+
bind.hpp \
29+
c2ast.hpp \
30+
check_nesting.hpp \
31+
color_maps.hpp \
32+
constants.hpp \
33+
context.hpp \
34+
cssize.hpp \
35+
dart_helpers.hpp \
36+
debug.hpp \
37+
debugger.hpp \
38+
emitter.hpp \
39+
environment.hpp \
40+
error_handling.hpp \
41+
eval.hpp \
42+
expand.hpp \
43+
extender.hpp \
44+
extension.hpp \
45+
file.hpp \
46+
fn_colors.hpp \
47+
fn_lists.hpp \
48+
fn_maps.hpp \
49+
fn_miscs.hpp \
50+
fn_numbers.hpp \
51+
fn_selectors.hpp \
52+
fn_strings.hpp \
53+
fn_utils.hpp \
54+
inspect.hpp \
55+
json.hpp \
56+
kwd_arg_macros.hpp \
57+
lexer.hpp \
58+
listize.hpp \
59+
mapping.hpp \
60+
memory.hpp \
61+
MurmurHash2.hpp \
62+
operation.hpp \
63+
operators.hpp \
64+
ordered_map.hpp \
65+
output.hpp \
66+
parser.hpp \
67+
permutate.hpp \
68+
plugins.hpp \
69+
position.hpp \
70+
prelexer.hpp \
71+
remove_placeholders.hpp \
72+
sass.hpp \
73+
sass_context.hpp \
74+
sass_functions.hpp \
75+
sass_values.hpp \
76+
settings.hpp \
77+
source.hpp \
78+
source_data.hpp \
79+
source_map.hpp \
80+
stylesheet.hpp \
81+
to_value.hpp \
82+
units.hpp \
83+
utf8_string.hpp \
84+
util.hpp \
85+
util_string.hpp \
86+
values.hpp \
87+
memory/allocator.hpp \
88+
memory/config.hpp \
89+
memory/memory_pool.hpp \
90+
memory/shared_ptr.hpp
91+
892
SOURCES = \
993
ast.cpp \
1094
ast_values.cpp \
@@ -71,4 +155,5 @@ SOURCES = \
71155
utf8_string.cpp \
72156
base64vlq.cpp
73157

74-
CSOURCES = cencode.c
158+
CSOURCES = \
159+
cencode.c

0 commit comments

Comments
 (0)