69bf8e4f71
Add two makefiles to manage compiling packages with NetBSD libc. * minix.libc.mk contains the proper CFLAGS/LDFLAGS * pkgsrchooks.mk contains the logic for setting the flags. * update bmake Several pkg-config files were added to help pkgsrc learn about the c, minlib, and compat_minix libraries.
21 lines
443 B
Makefile
21 lines
443 B
Makefile
NOOBJ= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MKSHARE} != "no"
|
|
FILES= bsd.ack.mk bsd.dep.mk bsd.files.mk \
|
|
bsd.gcc.mk bsd.inc.mk \
|
|
bsd.init.mk bsd.kinc.mk bsd.klinks.mk bsd.lib.mk \
|
|
bsd.links.mk bsd.man.mk bsd.obj.mk bsd.own.mk \
|
|
bsd.prog.mk bsd.subdir.mk bsd.sys.mk bsd.gcov.mk \
|
|
minix.libc.mk pkgsrchooks.mk sys.mk
|
|
|
|
# MINIX-specific files
|
|
FILES+= minix.bootprog.mk
|
|
|
|
FILESDIR=/usr/share/mk
|
|
.endif
|
|
|
|
FILESMODE=444
|
|
|
|
.include <bsd.prog.mk>
|