25 lines
773 B
Makefile
25 lines
773 B
Makefile
|
|
SRC_DIR = srcs
|
|
SRCS = $(SRC_DIR)/main.c \
|
|
$(SRC_DIR)/io/streams.c \
|
|
$(SRC_DIR)/utils/io/read_line.c \
|
|
$(SRC_DIR)/utils/string/starts_with.c \
|
|
$(SRC_DIR)/utils/string/extract_fence_ext.c \
|
|
$(SRC_DIR)/utils/string/extract_file_ext.c \
|
|
$(SRC_DIR)/utils/string/infer_ext_from_filename.c \
|
|
$(SRC_DIR)/transpile/state.c \
|
|
$(SRC_DIR)/transpile/fence.c \
|
|
$(SRC_DIR)/transpile/code.c \
|
|
$(SRC_DIR)/transpile/core.c \
|
|
$(SRC_DIR)/map/core.c \
|
|
$(SRC_DIR)/map/io.c \
|
|
$(SRC_DIR)/cli/cli.c \
|
|
$(SRC_DIR)/cli/help.c \
|
|
$(SRC_DIR)/validator/validator.c
|
|
|
|
TESTS_DIR = tests
|
|
TESTS = $(TESTS_DIR)/test_utils.c \
|
|
$(TESTS_DIR)/test_map.c \
|
|
$(TESTS_DIR)/test_transpile.c \
|
|
$(TESTS_DIR)/test_cli.c \
|
|
$(TESTS_DIR)/test_integration.c
|