summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPedro Souza <pedro@masba.net>2024-04-04 01:52:22 -0300
committerPedro Souza <pedro@masba.net>2024-04-04 01:52:22 -0300
commit5a2f6687f681fa0ceff19a42ec9ddce479e67c48 (patch)
tree97fbf0acee446c267c2a71e243b239c4b61c8632 /Makefile
parentc5921aec313cefa8bd6e8f4c70f057c137133028 (diff)
added truth table and expression evaluatorHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c06e73e..4348395 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ EXES := $(ARCFIND)
CFLAGS := $(addprefix -I,$(SRCDIRS)) $(XTRAFLAGS)
LDLIBS :=
-ARCFIND_O := $(addprefix ./bin/, main.o tree.o bu-parser.o)
+ARCFIND_O := $(addprefix ./bin/, main.o tree.o bu-parser.o truth_table.o)
all: $(EXES)
.PHONY: all