add numbers to parser

This commit is contained in:
2025-06-03 02:52:15 +01:00
parent e4c2af3cc7
commit ef61c391a1
7 changed files with 64 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ LEXER_C = src/lexer/lex.yy.c
LEXER_H = src/lexer/lex.yy.h
CFILES = $(shell find src -name '*.c')
CFLAGS = -lm -lcjson -lgc -Wall -Wextra -Wno-unused-function -s
CFLAGS = -lm -lcjson -lgc -lgmp -Wall -Wextra -Wno-unused-function -s
BINARY = bin/argon
all: $(BINARY)