aboutsummaryrefslogtreecommitdiffstats
path: root/src/fsec-print/Makefile.in
blob: a30ff4ba38e62e116500bd404374a2d0b55c0931 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: fsec-print

include ../common.mk

%.o : %.c $(H_FILE_LIST) ../include/common.h ../include/seccomp.h ../include/syscall.h
	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@

fsec-print: $(OBJS) ../lib/libnetlink.o ../lib/errno.o ../lib/syscall.o
	$(CC)  $(LDFLAGS) -o $@ $(OBJS) ../lib/errno.o ../lib/syscall.o $(LIBS) $(EXTRA_LDFLAGS)

clean:; rm -fr *.o fsec-print *.gcov *.gcda *.gcno *.plist

distclean: clean
	rm -fr Makefile