Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit f8d9dec

Browse files
committed
Change sort order for source files (sort by compile time)
This should give slightly faster build times when compiling in parallel with many threads.
1 parent b8cf94c commit f8d9dec

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

Makefile.conf

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,45 +2,45 @@
22

33
SOURCES = \
44
ast.cpp \
5-
base64vlq.cpp \
6-
bind.cpp \
7-
check_nesting.cpp \
8-
color_maps.cpp \
9-
constants.cpp \
5+
node.cpp \
106
context.cpp \
11-
cssize.cpp \
12-
emitter.cpp \
7+
constants.cpp \
8+
functions.cpp \
9+
color_maps.cpp \
1310
environment.cpp \
14-
error_handling.cpp \
15-
eval.cpp \
16-
expand.cpp \
17-
extend.cpp \
11+
bind.cpp \
1812
file.cpp \
19-
functions.cpp \
20-
inspect.cpp \
13+
util.cpp \
2114
json.cpp \
22-
lexer.cpp \
23-
listize.cpp \
24-
memory_manager.cpp \
25-
node.cpp \
26-
output.cpp \
27-
parser.cpp \
15+
units.cpp \
16+
values.cpp \
2817
plugins.cpp \
2918
position.cpp \
19+
lexer.cpp \
20+
parser.cpp \
3021
prelexer.cpp \
22+
eval.cpp \
23+
expand.cpp \
24+
listize.cpp \
25+
cssize.cpp \
26+
extend.cpp \
27+
output.cpp \
28+
inspect.cpp \
29+
emitter.cpp \
30+
check_nesting.cpp \
3131
remove_placeholders.cpp \
3232
sass.cpp \
3333
sass_util.cpp \
3434
sass_values.cpp \
3535
sass_context.cpp \
3636
sass_functions.cpp \
3737
sass2scss.cpp \
38-
source_map.cpp \
3938
to_c.cpp \
4039
to_value.cpp \
41-
units.cpp \
40+
source_map.cpp \
41+
error_handling.cpp \
42+
memory_manager.cpp \
4243
utf8_string.cpp \
43-
values.cpp \
44-
util.cpp
44+
base64vlq.cpp
4545

4646
CSOURCES = cencode.c

0 commit comments

Comments
 (0)