evalexpr: allow choosing parser at build time

This commit is contained in:
Bruno BELANYI 2020-10-28 17:20:13 +01:00
parent 9a6da7b19a
commit 92ae5e3ab9
2 changed files with 10 additions and 1 deletions

View file

@ -1,7 +1,8 @@
CC = gcc
CPPFLAGS = -Isrc/ -D_POSIX_C_SOURCE=200809L
CPPFLAGS = -Isrc/ -D_POSIX_C_SOURCE=200809L -D_USE_CLIMBING=$(USE_CLIMBING)
CFLAGS = -Wall -Wextra -pedantic -Werror -std=c99
VPATH = src/
USE_CLIMBING = 1
SRC = \
src/ast/ast.c \