# $OpenBSD: Makefile,v 1.17 2018/11/28 21:19:11 mpi Exp $ LIB= fuse MAN= fuse_chan_fd.3 fuse_daemonize.3 fuse_destroy.3 fuse_get_context.3 \ fuse_get_session.3 fuse_loop.3 fuse_main.3 fuse_mount.3 fuse_new.3 \ fuse_opt.3 fuse_parse_cmdline.3 fuse_set_signal_handlers.3 \ fuse_setup.3 fuse_teardown.3 fuse_version.3 CFLAGS+= -Wall -Wshadow -Wmissing-prototypes CFLAGS+= -Wstrict-prototypes -Wsign-compare CDIAGFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2 CDIAGFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations CDIAGFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare CDIAGFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align # XXX Shouldn't we use a common fuse.h with proper ifdef _KERNEL part? CFLAGS+= -I${.CURDIR} SRCS= debug.c dict.c fuse.c fuse_ops.c fuse_opt.c fuse_subr.c tree.c HDRS= fuse.h fuse_opt.h VERSION_SCRIPT= ${.CURDIR}/Symbols.map PC_FILES=fuse.pc CLEANFILES+=${PC_FILES} includes: @cd ${.CURDIR}; for i in ${HDRS}; do \ j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ $$i ${DESTDIR}/usr/include"; \ echo $$j; \ eval "$$j"; \ done all: ${PC_FILES} ${PC_FILES}: fuse_private.h /bin/sh ${.CURDIR}/generate_pkgconfig.sh -c ${.CURDIR} -o ${.OBJDIR} beforeinstall: ${INSTALL} ${INSTALL_COPY} -o root -g ${SHAREGRP} \ -m ${SHAREMODE} ${.OBJDIR}/${PC_FILES} ${DESTDIR}/usr/lib/pkgconfig/ .include