File: Makefile.conf

package info (click to toggle)
golang-github-bep-golibsass 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,808 kB
  • sloc: cpp: 30,398; ansic: 848; sh: 662; makefile: 340; perl: 56
file content (74 lines) | stat: -rw-r--r-- 1,449 bytes parent folder | download | duplicates (2)
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
# this is merely a common Makefile multiple implementers can use
# bigger files (in terms of compile time) tend to go to the top,
# so they don't end up as the last compile unit when compiling
# in parallel. But we also want to mix them a little too avoid
# heavy RAM usage peaks. Other than that the order is arbitrary.


SOURCES = \
	ast.cpp \
	ast_values.cpp \
	ast_supports.cpp \
	ast_sel_cmp.cpp \
	ast_sel_unify.cpp \
	ast_sel_super.cpp \
	ast_sel_weave.cpp \
	ast_selectors.cpp \
	context.cpp \
	constants.cpp \
	fn_utils.cpp \
	fn_miscs.cpp \
	fn_maps.cpp \
	fn_lists.cpp \
	fn_colors.cpp \
	fn_numbers.cpp \
	fn_strings.cpp \
	fn_selectors.cpp \
	color_maps.cpp \
	environment.cpp \
	ast_fwd_decl.cpp \
	bind.cpp \
	file.cpp \
	util.cpp \
	util_string.cpp \
	json.cpp \
	units.cpp \
	values.cpp \
	plugins.cpp \
	source.cpp \
	position.cpp \
	lexer.cpp \
	parser.cpp \
	parser_selectors.cpp \
	prelexer.cpp \
	eval.cpp \
	eval_selectors.cpp \
	expand.cpp \
	listize.cpp \
	cssize.cpp \
	extender.cpp \
	extension.cpp \
	stylesheet.cpp \
	output.cpp \
	inspect.cpp \
	emitter.cpp \
	check_nesting.cpp \
	remove_placeholders.cpp \
	sass.cpp \
	sass_values.cpp \
	sass_context.cpp \
	sass_functions.cpp \
	sass2scss.cpp \
	backtrace.cpp \
	operators.cpp \
	ast2c.cpp \
	c2ast.cpp \
	to_value.cpp \
	source_map.cpp \
	error_handling.cpp \
	memory/allocator.cpp \
	memory/shared_ptr.cpp \
	utf8_string.cpp \
	base64vlq.cpp

CSOURCES = cencode.c