aboutsummaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-25 15:50:13 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-25 15:50:21 +0200
commitff415f69a93812418cc60a33dd14452fc6b2901a (patch)
tree1578ef579b958927e64e0835c81339a00fce65fb /make.c
parent0d28ae797b89f05b08b1051f0d2dd72d2416d409 (diff)
Support generation of asm/obj files
Diffstat (limited to 'make.c')
-rw-r--r--make.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/make.c b/make.c
index 5566859..be85ecf 100644
--- a/make.c
+++ b/make.c
@@ -12,6 +12,7 @@
#define TARGET "oryx"
#define GMPDIR "vendor/gmp-6.3.0"
+#define OPDIR "vendor/optparse-master"
enum {
SIMD_AVX2 = 1 << 0,
@@ -21,6 +22,7 @@ enum {
static char *cflags_all[] = {
("-I" GMPDIR),
+ ("-I" OPDIR),
"-pipe",
"-std=c11",
"-Wall",