We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e44270 commit 580e1f3Copy full SHA for 580e1f3
.github/workflows/tests.yml
@@ -23,6 +23,9 @@ jobs:
23
- name: Build binray
24
run: make
25
26
+ - name: Build static binray
27
+ run: make static
28
+
29
- name: Build library
30
run: make shared
31
Makefile
@@ -40,6 +40,9 @@ all: $(TARGET_SRCS)
40
$(CC) $(CFLAGS) $(INCLUDES) \
41
$(TARGET_SRCS) -o $(TARGET)
42
43
+static: CFLAGS += -static
44
+static: all
45
46
debug: CFLAGS += $(CFLAGS_DEBUG)
47
debug: all
48
0 commit comments