Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer


PROG=	mount_pgfs
SRCS=	mount.c pgfs_subs.c pgfs_db.c pgfs_puffs.c pgfs_waitq.c pgfs_debug.c

DPADD+=		${LIBPUFFS} ${LIBUTIL}
CPPFLAGS+=	-D_KERNTYPES
LDADD+=		-lpuffs -lutil

COPTS.pgfs_debug.c=	-Wno-format-nonliteral

NOMAN=

PG_CONFIG=	pg_config

PGINC!=		${PG_CONFIG} --includedir
PGLIBDIR!=	${PG_CONFIG} --libdir
CPPFLAGS+=	-I${PGINC}
LDFLAGS+=	-L${PGLIBDIR}
LDFLAGS+=	-Wl,-R${PGLIBDIR}
LDFLAGS+=	-lpq

DBG+=		-g
#DBG?=		-g

WARNS?=		4

.include <bsd.prog.mk>