Skip to content

Commit

Permalink
Makefiles are updated
Browse files Browse the repository at this point in the history
  • Loading branch information
kocatepedogu committed Aug 20, 2023
1 parent c6c8615 commit 023f87a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ lib_LTLIBRARIES = libtlisp.la
libtlisp_la_SOURCES =\
types/object.c\
types/object.h\
types/object-base.h\
types/boolean.c\
types/boolean.h\
types/integer.c\
Expand Down Expand Up @@ -95,7 +96,7 @@ libtlisp_la_SOURCES =\
automaton/automaton.h

tlispdir = $(libdir)/tlisp
tlisp_DATA =\
dist_tlisp_DATA =\
lib/list.tl\
lib/util.tl\
lib/primitives.tl\
Expand Down
16 changes: 8 additions & 8 deletions tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ check_stack_SOURCES = utils/check_stack.c \
$(UTIL_DIR)/stack.h

check_format_SOURCES = utils/check_format.c \
$(UTIL_DIR)/heap-format.h
$(UTIL_DIR)/string.h

# Types Tests

Expand Down Expand Up @@ -96,32 +96,32 @@ check_stack_frame_SOURCES = interpreter/check_stack_frame.c \
$(INTERPRETER_DIR)/stack_frame.h \
$(INTERPRETER_DIR)/variable.h \
$(TYPES_DIR)/object.h \
$(UTILS_DIR)/list.h
$(UTIL_DIR)/list.h

# Expression Tests

EXPR_DIR = $(SRC_DIR)/expressions

check_define_SOURCES = expressions/check_define.c \
expressions/parse.h \
$(EXPR_DIR)/definition_expr.h
$(EXPR_DIR)/definition.h

check_if_SOURCES = expressions/check_if.c \
expressions/parse.h \
$(EXPR_DIR)/if_expr.h
$(EXPR_DIR)/if.h

check_lambda_SOURCES = expressions/check_lambda.c \
expressions/parse.h \
$(EXPR_DIR)/lambda_expr.h
$(EXPR_DIR)/lambda.h

check_let_SOURCES = expressions/check_let.c \
expressions/parse.h \
$(EXPR_DIR)/let_expr.h
$(EXPR_DIR)/let.h

check_evaluation_SOURCES = expressions/check_evaluation.c \
expressions/parse.h \
$(EXPR_DIR)/evaluation_expr.h
$(EXPR_DIR)/evaluation.h

check_cond_SOURCES = expressions/check_cond.c \
expressions/parse.h \
$(EXPR_DIR)/cond_expr.h
$(EXPR_DIR)/cond.h

0 comments on commit 023f87a

Please sign in to comment.