diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-03-23 16:14:51 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-03-23 16:14:51 +0200 |
| commit | 5b038666c3e911ffeb78a4d656044e5bd076705b (patch) | |
| tree | 9b09b4f27c39ef6a0139a5eb9bfa5e98a250086c /Makefile | |
| parent | 70615379062cdd2e016f5095dfafd23a6dca148c (diff) | |
| download | ek-5b038666c3e911ffeb78a4d656044e5bd076705b.tar.gz ek-5b038666c3e911ffeb78a4d656044e5bd076705b.zip | |
integrate parser work
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -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: |
