aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-03 11:03:54 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-11-21 17:22:50 -0300
commit5db2186358c86e6d4e0593228ca389840105ce30 (patch)
treee651e933f18569720c77bb2472ae2ef9f2fc43fe /src/firejail
parentmakefiles: deduplicate main target name into new PROG var (diff)
downloadfirejail-5db2186358c86e6d4e0593228ca389840105ce30.tar.gz
firejail-5db2186358c86e6d4e0593228ca389840105ce30.tar.zst
firejail-5db2186358c86e6d4e0593228ca389840105ce30.zip
makefiles: deduplicate many makefiles into common.mk
The makefiles that both build C programs and include src/common.mk are nearly identical, save for the main target name and for any extra headers and objects that they might use. So move all of their (duplicated) code into src/common.mk, which (other than the "lib" target on src/lib/Makefile) leaves only variables and the includes of config.mk and src/common.mk in place.
Diffstat (limited to 'src/firejail')
-rw-r--r--src/firejail/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/firejail/Makefile b/src/firejail/Makefile
index e64139f0c..1a8b82f89 100644
--- a/src/firejail/Makefile
+++ b/src/firejail/Makefile
@@ -22,19 +22,4 @@ MOD_OBJS = \
22../lib/errno.o \ 22../lib/errno.o \
23../lib/syscall.o 23../lib/syscall.o
24 24
25.PHONY: all
26all: $(TARGET)
27
28include $(ROOT)/src/common.mk 25include $(ROOT)/src/common.mk
29
30%.o : %.c $(HDRS) $(ROOT)/config.mk
31 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@
32
33$(PROG): $(OBJS) $(ROOT)/config.mk
34 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS)
35
36.PHONY: clean
37clean:; rm -fr *.o $(PROG) *.gcov *.gcda *.gcno *.plist
38
39.PHONY: distclean
40distclean: clean