mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
Enabled lexer tests
This commit is contained in:
@@ -7,7 +7,14 @@ LIBS +=
|
|||||||
ODIR = obj
|
ODIR = obj
|
||||||
#TARGETS = $(wildcard ../source/*.c) $(wildcard ../repl/lib_*.c)
|
#TARGETS = $(wildcard ../source/*.c) $(wildcard ../repl/lib_*.c)
|
||||||
|
|
||||||
TARGETS = ../source/memory.c ../source/refstring.c ../source/literal.c ../source/literal_array.c ../source/literal_dictionary.c ../source/scope.c
|
#literal primitive
|
||||||
|
TARGETS+=../source/memory.c ../source/refstring.c ../source/literal.c ../source/literal_array.c ../source/literal_dictionary.c ../source/scope.c
|
||||||
|
|
||||||
|
#lexer
|
||||||
|
TARGETS+=../source/toy_common.c ../source/keyword_types.c ../source/lexer.c
|
||||||
|
|
||||||
|
#parser
|
||||||
|
#TARGETS+=
|
||||||
|
|
||||||
TESTS = $(wildcard test_*.c)
|
TESTS = $(wildcard test_*.c)
|
||||||
OBJ = $(addprefix $(ODIR)/,$(TARGETS:../source/%.c=%.o)) $(addprefix $(ODIR)/,$(TESTS:.c=.o))
|
OBJ = $(addprefix $(ODIR)/,$(TARGETS:../source/%.c=%.o)) $(addprefix $(ODIR)/,$(TESTS:.c=.o))
|
||||||
|
|||||||
Reference in New Issue
Block a user