aboutsummaryrefslogtreecommitdiffstats
path: root/src/fnettrace-dns
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/fnettrace-dns
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/fnettrace-dns')
-rw-r--r--src/fnettrace-dns/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/fnettrace-dns/Makefile b/src/fnettrace-dns/Makefile
index 0598bb2fe..404951cf9 100644
--- a/src/fnettrace-dns/Makefile
+++ b/src/fnettrace-dns/Makefile
@@ -4,19 +4,4 @@ ROOT = ../..
4PROG = fnettrace-dns 4PROG = fnettrace-dns
5TARGET = $(PROG) 5TARGET = $(PROG)
6 6
7.PHONY: all
8all: $(TARGET)
9
10include $(ROOT)/src/common.mk 7include $(ROOT)/src/common.mk
11
12%.o : %.c $(HDRS) $(ROOT)/config.mk
13 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@
14
15$(PROG): $(OBJS) $(ROOT)/config.mk
16 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS)
17
18.PHONY: clean
19clean:; rm -fr *.o $(PROG) *.gcov *.gcda *.gcno *.plist
20
21.PHONY: distclean
22distclean: clean