aboutsummaryrefslogtreecommitdiffstats
path: root/src/fids/Makefile.in
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2021-07-28 08:30:24 -0400
committerLibravatar netblue30 <netblue30@protonmail.com>2021-07-28 08:30:24 -0400
commita627071b33b42dd24a90070236d2f85eeebc423c (patch)
tree5388f450044f8b205812e5f6e740874d40b4dd62 /src/fids/Makefile.in
parentMerge pull request #4410 from kmk3/revert-allow-deny-etc (diff)
downloadfirejail-a627071b33b42dd24a90070236d2f85eeebc423c.tar.gz
firejail-a627071b33b42dd24a90070236d2f85eeebc423c.tar.zst
firejail-a627071b33b42dd24a90070236d2f85eeebc423c.zip
intrusion detection system
Diffstat (limited to 'src/fids/Makefile.in')
-rw-r--r--src/fids/Makefile.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/fids/Makefile.in b/src/fids/Makefile.in
new file mode 100644
index 000000000..5530bcee2
--- /dev/null
+++ b/src/fids/Makefile.in
@@ -0,0 +1,18 @@
1.PHONY: all
2all: fids
3
4include ../common.mk
5
6%.o : %.c $(H_FILE_LIST) ../include/common.h
7 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@
8
9#fseccomp: $(OBJS) ../lib/common.o ../lib/errno.o ../lib/syscall.o
10fids: $(OBJS)
11 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS)
12
13.PHONY: clean
14clean:; rm -fr *.o fids *.gcov *.gcda *.gcno *.plist
15
16.PHONY: distclean
17distclean: clean
18 rm -fr Makefile