aboutsummaryrefslogtreecommitdiffstats
path: root/src/fsec-print
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-07 02:38:08 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-11-21 17:19:00 -0300
commit48c151aa1683de94e42f4410fb9312936e030adf (patch)
tree508b7b9cecb88856a8bcc5117248e923eedc031f /src/fsec-print
parentmakefiles: line-wrap MOD_HDRS and MOD_OBJS (diff)
downloadfirejail-48c151aa1683de94e42f4410fb9312936e030adf.tar.gz
firejail-48c151aa1683de94e42f4410fb9312936e030adf.tar.zst
firejail-48c151aa1683de94e42f4410fb9312936e030adf.zip
makefiles: deduplicate main target name into new PROG var
Put the main target name into a new PROG variable, put PROG into a new TARGET variable, make "all" depend on `$(TARGET)` and replace every other occurrence of the main target name with `$(PROG)`. On the makefiles that build non-shared objects, to make them more similar. With this commit, all of their targets are identical (except for the extra "lib" target on src/lib/Makefile).
Diffstat (limited to 'src/fsec-print')
-rw-r--r--src/fsec-print/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/fsec-print/Makefile b/src/fsec-print/Makefile
index 3ef78545f..9b13bfe7a 100644
--- a/src/fsec-print/Makefile
+++ b/src/fsec-print/Makefile
@@ -1,22 +1,25 @@
1ROOT = ../.. 1ROOT = ../..
2-include $(ROOT)/config.mk 2-include $(ROOT)/config.mk
3 3
4PROG = fsec-print
5TARGET = $(PROG)
6
4MOD_HDRS = ../include/common.h ../include/seccomp.h ../include/syscall.h 7MOD_HDRS = ../include/common.h ../include/seccomp.h ../include/syscall.h
5MOD_OBJS = ../lib/common.o ../lib/errno.o ../lib/syscall.o 8MOD_OBJS = ../lib/common.o ../lib/errno.o ../lib/syscall.o
6 9
7.PHONY: all 10.PHONY: all
8all: fsec-print 11all: $(TARGET)
9 12
10include $(ROOT)/src/common.mk 13include $(ROOT)/src/common.mk
11 14
12%.o : %.c $(HDRS) $(ROOT)/config.mk 15%.o : %.c $(HDRS) $(ROOT)/config.mk
13 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@ 16 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@
14 17
15fsec-print: $(OBJS) $(ROOT)/config.mk 18$(PROG): $(OBJS) $(ROOT)/config.mk
16 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS) 19 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS)
17 20
18.PHONY: clean 21.PHONY: clean
19clean:; rm -fr *.o fsec-print *.gcov *.gcda *.gcno *.plist 22clean:; rm -fr *.o $(PROG) *.gcov *.gcda *.gcno *.plist
20 23
21.PHONY: distclean 24.PHONY: distclean
22distclean: clean 25distclean: clean