summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2025-10-27 10:52:01 -0500
committersanine <sanine.not@pm.me>2025-10-27 10:52:01 -0500
commit8f63364c2b1ec54e104c189db43805917800b789 (patch)
tree8329eb5a9955667f1aa8d2e22110062d841379c7 /Makefile
parent11f8fd4418a068c76fc7c810967a6bf285ee74b6 (diff)
implement basic grammatical expansionc-version
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 658bce0..0a02e41 100644
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,5 @@
example: genalg.h genalg.c genalg.example.c
gcc -g -o example genalg.c genalg.example.c -Wall -Wextra -Wpedantic -Werror -lm
+
+test: expression.h expression.c expression.test.c
+ gcc -g -o test expression.c expression.test.c -Wall -Wextra -Wpedantic -Werror -lm