aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile11
-rw-r--r--src/fnettrace/Makefile2
-rw-r--r--test/Makefile10
3 files changed, 12 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index e85c8752c..c061e0c7a 100644
--- a/Makefile
+++ b/Makefile
@@ -175,17 +175,6 @@ clean:
175 rm -f $(SECCOMP_FILTERS) 175 rm -f $(SECCOMP_FILTERS)
176 rm -f $(SYNTAX_FILES) 176 rm -f $(SYNTAX_FILES)
177 rm -f firejail*.rpm 177 rm -f firejail*.rpm
178 rm -f src/fnettrace/static-ip-map
179 rm -fr test/environment/-testdir
180 rm -f test/environment/index.html*
181 rm -f test/environment/logfile*
182 rm -f test/environment/wget-log*
183 rm -f test/sysutils/firejail_t*
184 rm -f test/utils/firejail-test-file*
185 rm -f test/utils/index.html*
186 rm -f test/utils/lstesting
187 rm -f test/utils/wget-log
188 cd test/compile; ./compile.sh --clean; cd ../..
189 178
190.PHONY: distclean 179.PHONY: distclean
191distclean: clean 180distclean: clean
diff --git a/src/fnettrace/Makefile b/src/fnettrace/Makefile
index 2ad296d1d..93ce9334d 100644
--- a/src/fnettrace/Makefile
+++ b/src/fnettrace/Makefile
@@ -7,6 +7,8 @@ MOD_DIR = $(ROOT)/src/$(MOD)
7PROG = $(MOD_DIR)/$(MOD) 7PROG = $(MOD_DIR)/$(MOD)
8TARGET = $(PROG) 8TARGET = $(PROG)
9 9
10CLEANFILES += static-ip-map
11
10include $(ROOT)/src/prog.mk 12include $(ROOT)/src/prog.mk
11 13
12all: $(TARGET) static-ip-map 14all: $(TARGET) static-ip-map
diff --git a/test/Makefile b/test/Makefile
index d7b1bac7a..2ac6e4c6f 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -12,3 +12,13 @@ $(TESTS):
12.PHONY: clean 12.PHONY: clean
13clean: 13clean:
14 for test in $(TESTS); do rm -f "$$test/$$test.log"; done 14 for test in $(TESTS); do rm -f "$$test/$$test.log"; done
15 rm -fr environment/-testdir
16 rm -f environment/index.html*
17 rm -f environment/logfile*
18 rm -f environment/wget-log*
19 rm -f sysutils/firejail_t*
20 rm -f utils/firejail-test-file*
21 rm -f utils/index.html*
22 rm -f utils/lstesting
23 rm -f utils/wget-log
24 cd compile && ./compile.sh --clean