From 5b038666c3e911ffeb78a4d656044e5bd076705b Mon Sep 17 00:00:00 2001 From: Kimplul Date: Thu, 23 Mar 2023 16:14:51 +0200 Subject: integrate parser work --- Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f09849b..cf0c1da 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,8 @@ INCLUDEFLAGS = -Iinclude COMPILEFLAGS = LINKFLAGS = -all: ct +# should the compiler be renamed ctc? C with Traits Compiler? +all: cu # default values CROSS_COMPILE ?= @@ -41,12 +42,16 @@ docs: @./scripts/warn-undocumented @doxygen docs/doxygen.conf -ct: $(OBJS) +.PHONY: check +check: cu + ./tests/check.sh + +cu: $(OBJS) $(COMPILE) $(OBJS) -o $@ .PHONY: clean clean: - @$(RM) -r build exgt deps.mk + @$(RM) -r build cu deps.mk .PHONY: clean_docs clean_docs: -- cgit v1.3