Blame Makefile.conf

Packit Service 7770af
# this is merely a common Makefile multiple implementers can use
Packit Service 7770af
# bigger files (in terms of compile time) tend to go to the top,
Packit Service 7770af
# so they don't end up as the last compile unit when compiling
Packit Service 7770af
# in parallel. But we also want to mix them a little too avoid
Packit Service 7770af
# heavy RAM usage peaks. Other than that the order is arbitrary.
Packit Service 7770af
Packit Service 7770af
Packit Service 7770af
SOURCES = \
Packit Service 7770af
	ast.cpp \
Packit Service 7770af
	node.cpp \
Packit Service 7770af
	context.cpp \
Packit Service 7770af
	constants.cpp \
Packit Service 7770af
	functions.cpp \
Packit Service 7770af
	color_maps.cpp \
Packit Service 7770af
	environment.cpp \
Packit Service 7770af
	ast_fwd_decl.cpp \
Packit Service 7770af
	bind.cpp \
Packit Service 7770af
	file.cpp \
Packit Service 7770af
	util.cpp \
Packit Service 7770af
	json.cpp \
Packit Service 7770af
	units.cpp \
Packit Service 7770af
	values.cpp \
Packit Service 7770af
	plugins.cpp \
Packit Service 7770af
	position.cpp \
Packit Service 7770af
	lexer.cpp \
Packit Service 7770af
	parser.cpp \
Packit Service 7770af
	prelexer.cpp \
Packit Service 7770af
	eval.cpp \
Packit Service 7770af
	expand.cpp \
Packit Service 7770af
	listize.cpp \
Packit Service 7770af
	cssize.cpp \
Packit Service 7770af
	extend.cpp \
Packit Service 7770af
	output.cpp \
Packit Service 7770af
	inspect.cpp \
Packit Service 7770af
	emitter.cpp \
Packit Service 7770af
	check_nesting.cpp \
Packit Service 7770af
	remove_placeholders.cpp \
Packit Service 7770af
	sass.cpp \
Packit Service 7770af
	sass_util.cpp \
Packit Service 7770af
	sass_values.cpp \
Packit Service 7770af
	sass_context.cpp \
Packit Service 7770af
	sass_functions.cpp \
Packit Service 7770af
	sass2scss.cpp \
Packit Service 7770af
	to_c.cpp \
Packit Service 7770af
	to_value.cpp \
Packit Service 7770af
	source_map.cpp \
Packit Service 7770af
	subset_map.cpp \
Packit Service 7770af
	error_handling.cpp \
Packit Service 7770af
	memory/SharedPtr.cpp \
Packit Service 7770af
	utf8_string.cpp \
Packit Service 7770af
	base64vlq.cpp
Packit Service 7770af
Packit Service 7770af
CSOURCES = cencode.c