1
0
Fork 0
lesson-lisp/Makefile

61 lines
1.5 KiB
Makefile
Raw Normal View History

2023-05-04 08:27:39 -04:00
all: test
2023-05-03 14:42:26 -04:00
CAT = cat
2023-05-03 14:42:26 -04:00
CC = gcc
DIFF_Q = diff -q
RM_F = rm -f
2023-05-03 14:42:26 -04:00
CFLAGS = -Wall -Wextra
2023-05-04 07:18:16 -04:00
OBJS = \
2023-05-04 15:34:05 -04:00
src/builtins.c.o \
src/ctype.c.o \
2023-05-05 07:35:34 -04:00
src/eval.c.o \
2023-05-04 15:34:05 -04:00
src/lexer.c.o \
src/object.c.o \
src/parser.c.o \
2023-05-05 14:26:07 -04:00
src/syntax.c.o \
2023-05-04 15:34:05 -04:00
src/tokens.c.o
2023-05-03 18:05:11 -04:00
2023-05-06 12:58:11 -04:00
TEST_OUTS = \
tests/arithm_ops.out \
tests/basic_data_structs.out \
tests/hello.out \
tests/arcane.out \
tests/logic_ops.out \
tests/syntax.out \
tests/type_conv.out \
tests/type_preds.out
2023-05-05 07:35:34 -04:00
MAIN_OBJS = $(OBJS) src/main.c.o
TEST_OBJS = $(OBJS) src/main-test.c.o
2023-05-05 10:15:43 -04:00
repl: arcane-scheme-lisp
./arcane-scheme-lisp
2023-05-05 04:42:35 -04:00
2023-05-06 12:58:11 -04:00
test: arcane-scheme-lisp-test $(TEST_OUTS)
2023-05-05 10:15:43 -04:00
./arcane-scheme-lisp-test
2023-05-06 12:58:11 -04:00
$(DIFF_Q) tests/arithm_ops.txt tests/arithm_ops.out
$(DIFF_Q) tests/basic_data_structs.txt tests/basic_data_structs.out
$(DIFF_Q) tests/hello.txt tests/hello.out
$(DIFF_Q) tests/arcane.txt tests/arcane.out
$(DIFF_Q) tests/logic_ops.txt tests/logic_ops.out
$(DIFF_Q) tests/syntax.txt tests/syntax.out
$(DIFF_Q) tests/type_conv.txt tests/type_conv.out
$(DIFF_Q) tests/type_preds.txt tests/type_preds.out
2023-05-04 08:27:39 -04:00
2023-05-03 18:05:11 -04:00
clean:
2023-05-06 12:58:11 -04:00
$(RM_F) arcane-scheme-lisp arcane-scheme-lisp-test $(MAIN_OBJS) $(TEST_OBJS) $(TEST_OUTS)
2023-05-05 07:35:34 -04:00
2023-05-05 10:15:43 -04:00
arcane-scheme-lisp: $(MAIN_OBJS)
2023-05-05 07:35:34 -04:00
$(CC) -o $@ $^ $(CFLAGS)
2023-05-03 14:42:26 -04:00
2023-05-05 10:15:43 -04:00
arcane-scheme-lisp-test: $(TEST_OBJS)
2023-05-03 14:42:26 -04:00
$(CC) -o $@ $^ $(CFLAGS)
%.c.o: %.c
$(CC) -c $< -o $@ $(CFLAGS)
2023-05-06 12:58:11 -04:00
tests/%.out: tests/%.scm arcane-scheme-lisp
$(CAT) $< | ./arcane-scheme-lisp > $@