blob: ba637012311081bc643c009d5ca8abec0577db3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# $P4: //depot/projects/trustedbsd/openbsm/bsm/Makefile#7 $
#
INCS= audit.h \
audit_internal.h \
audit_kevents.h \
audit_record.h \
audit_uevents.h \
libbsm.h
TARGET= ${DESTDIR}/usr/include/bsm
all:
default:
depend:
clean:
install:
mkdir -p -m 0755 ${TARGET}
install -o root -g wheel -m 0644 ${INCS} ${TARGET}
|