diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-04 19:10:47 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-04 19:10:47 +0200 |
commit | 581f61a8ddf535175b03749b215ade43f3fa28c5 (patch) | |
tree | 44f0cb985d2a717c257347301ecc3d43d98ecfff /Makefile | |
parent | ada93069cb5fb292bfb5f3b8a22ba6221e55d7b5 (diff) |
Support multiple eqns per table
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ MAKEFLAGS = -j8 CFLAGS = -O3 -march=native -mtune=native -pipe -Wall -Wextra -Wpedantic target = pinocchio -objs = src/lexer.o src/main.o src/parser.o +objs = src/lexer.o src/main.o src/parser.o src/wrapper.o all: $(target) $(target): $(objs) |