aboutsummaryrefslogtreecommitdiffstats
path: root/src/fids/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/fids/Makefile')
-rw-r--r--src/fids/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/fids/Makefile b/src/fids/Makefile
new file mode 100644
index 000000000..eed6e44ea
--- /dev/null
+++ b/src/fids/Makefile
@@ -0,0 +1,18 @@
1.PHONY: all
2all: fids
3
4ROOT = ../..
5include $(ROOT)/src/common.mk
6
7%.o : %.c $(H_FILE_LIST) ../include/common.h
8 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@
9
10#fseccomp: $(OBJS) ../lib/common.o ../lib/errno.o ../lib/syscall.o
11fids: $(OBJS)
12 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS)
13
14.PHONY: clean
15clean:; rm -fr *.o fids *.gcov *.gcda *.gcno *.plist
16
17.PHONY: distclean
18distclean: clean