We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe8204 commit 137fadeCopy full SHA for 137fade
Makefile
@@ -1,10 +1,12 @@
1
CC ?= cc
2
VFLAGS ?=
3
+CFLAGS ?=
4
+LDFLAGS ?=
5
6
all:
7
rm -rf vc/
8
git clone --depth 1 --quiet https://github.com/vlang/vc
- $(CC) -std=gnu11 -w -I ./thirdparty/stdatomic/nix -o v1 vc/v.c -lm -lexecinfo -lpthread
9
+ $(CC) $(CFLAGS) -std=gnu11 -w -I ./thirdparty/stdatomic/nix -o v1 vc/v.c -lm -lexecinfo -lpthread $(LDFLAGS)
10
./v1 -no-parallel -o v2 $(VFLAGS) cmd/v
11
./v2 -o v $(VFLAGS) cmd/v
12
rm -rf v1 v2 vc/
0 commit comments