aboutsummaryrefslogtreecommitdiffstats
path: root/src/so.mk
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-01-20 21:15:12 +0000
committerLibravatar GitHub <noreply@github.com>2024-01-20 21:15:12 +0000
commit4f134116b77f5d03b239df3ea9b56d46811f5665 (patch)
tree77646491f3d8b6b742d74a39e5e6c91fab95487a /src/so.mk
parentMerge pull request #6159 from kmk3/build-use-cppflags (diff)
parentbuild: use full paths on compile/link targets (diff)
downloadfirejail-4f134116b77f5d03b239df3ea9b56d46811f5665.tar.gz
firejail-4f134116b77f5d03b239df3ea9b56d46811f5665.tar.zst
firejail-4f134116b77f5d03b239df3ea9b56d46811f5665.zip
Merge pull request #6158 from kmk3/build-use-full-paths
build: use full paths on compile/link targets
Diffstat (limited to 'src/so.mk')
-rw-r--r--src/so.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/so.mk b/src/so.mk
index 27c5695a8..deb0a6175 100644
--- a/src/so.mk
+++ b/src/so.mk
@@ -5,8 +5,8 @@
5# The includer should probably define SO and TARGET and may also want to define 5# The includer should probably define SO and TARGET and may also want to define
6# EXTRA_HDRS and EXTRA_OBJS and extend CLEANFILES. 6# EXTRA_HDRS and EXTRA_OBJS and extend CLEANFILES.
7 7
8HDRS := $(sort $(wildcard *.h)) $(EXTRA_HDRS) 8HDRS := $(sort $(wildcard $(MOD_DIR)/*.h)) $(EXTRA_HDRS)
9SRCS := $(sort $(wildcard *.c)) 9SRCS := $(sort $(wildcard $(MOD_DIR)/*.c))
10OBJS := $(SRCS:.c=.o) $(EXTRA_OBJS) 10OBJS := $(SRCS:.c=.o) $(EXTRA_OBJS)
11 11
12.PHONY: all 12.PHONY: all