commit 4a8b3fd
Merge pull request #1 Reviewed-on: https://codeberg.org/wf/howl/pulls/1
1 files changed,
+2,
-1
M
Makefile
M
Makefile
+2,
-1
1@@ -1,7 +1,8 @@
2 CC ?= cc
3+PKG_CONFIG ?= pkg-config
4 CFLAGS += -std=c99 -Wall -Wimplicit-function-declaration -Oz -pedantic
5 LDFLAGS += -Iinclude
6-LDLIBS := `pkg-config --libs swc`
7+LDLIBS := `${PKG_CONFIG} --libs swc`
8 PREFIX ?= /usr/local
9
10 ###############