remove debug options, remove od makefile, inline most op functions

This commit is contained in:
ProgramSnail 2024-11-12 01:56:09 +03:00
parent 963e286f49
commit 959c06cc65
9 changed files with 270 additions and 359 deletions

View file

@ -4,9 +4,9 @@
(:include (source_tree include))
(:main src/cli.c src/interpreter.c)
(:parser src/parser.c)
(:utils src/utils.c src/types.c src/stack.c)
(:utils src/types.c)
(:runtime ../runtime/runtime.a))
(mode
(promote (until-clean)))
(action
(run gcc -Iinclude/ -g -pg %{main} %{parser} %{utils} %{runtime} -o %{target})))
(run gcc -Iinclude/ %{main} %{parser} %{utils} %{runtime} -o %{target})))