aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtrace
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-03 05:47:23 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-11-21 17:36:47 -0300
commitadbd02f4213666cf68a455599dc366a840b3ad25 (patch)
tree309bc6cb59c25b64d45ac32d0a23ac199b784782 /src/libtrace
parentmakefiles: deduplicate main target name into new SO var (diff)
downloadfirejail-adbd02f4213666cf68a455599dc366a840b3ad25.tar.gz
firejail-adbd02f4213666cf68a455599dc366a840b3ad25.tar.zst
firejail-adbd02f4213666cf68a455599dc366a840b3ad25.zip
makefiles: deduplicate lib makefiles into so.mk
The following makefiles are nearly identical, except for the main target name and for any extra headers that they might use: * src/libpostexecseccomp/Makefile * src/libtrace/Makefile * src/libtracelog/Makefile So move all of their (duplicated) code into a new src/so.mk file, and add an include of src/so.mk, which leaves only variables, and the includes of config.mk and src/so.mk in place. With this commit, CFLAGS and LDFLAGS are only defined/changed in the following files: * config.mk.in * src/common.mk * src/so.mk
Diffstat (limited to 'src/libtrace')
-rw-r--r--src/libtrace/Makefile21
1 files changed, 1 insertions, 20 deletions
diff --git a/src/libtrace/Makefile b/src/libtrace/Makefile
index cb2d66667..d45b3e2f6 100644
--- a/src/libtrace/Makefile
+++ b/src/libtrace/Makefile
@@ -4,23 +4,4 @@ ROOT = ../..
4SO = libtrace.so 4SO = libtrace.so
5TARGET = $(SO) 5TARGET = $(SO)
6 6
7HDRS := $(sort $(wildcard *.h)) $(MOD_HDRS) 7include $(ROOT)/src/so.mk
8SRCS := $(sort $(wildcard *.c)) $(MOD_SRCS)
9OBJS := $(SRCS:.c=.o) $(MOD_OBJS)
10CFLAGS += -ggdb $(HAVE_FATAL_WARNINGS) -O2 -DVERSION='"$(VERSION)"' -fstack-protector-all -D_FORTIFY_SOURCE=2 -fPIC -Wformat -Wformat-security
11LDFLAGS += -pie -fPIE -Wl,-z,relro -Wl,-z,now
12
13.PHONY: all
14all: $(TARGET)
15
16%.o : %.c $(HDRS) $(ROOT)/config.mk
17 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@
18
19$(SO): $(OBJS) $(ROOT)/config.mk
20 $(CC) $(LDFLAGS) -shared -fPIC -z relro -o $@ $(OBJS) -ldl
21
22.PHONY: clean
23clean:; rm -fr $(OBJS) $(SO) *.plist
24
25.PHONY: distclean
26distclean: clean