mirror of
https://github.com/opnsense/src.git
synced 2026-03-14 14:42:40 -04:00
packages and also sort of give the (correct) impression that this basically sits on top of stdio and deals with stream pointers (FILE*).
10 lines
251 B
Makefile
10 lines
251 B
Makefile
LIB= ftpio
|
|
CFLAGS+= -I${.CURDIR}
|
|
SRCS= ftpio.c
|
|
MAN3= ftpio.3
|
|
|
|
beforeinstall:
|
|
cd ${.CURDIR}; cmp -s ftpio.h ${DESTDIR}/usr/include/ftpio.h || \
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ftpio.h ${DESTDIR}/usr/include
|
|
|
|
.include <bsd.lib.mk>
|