Makefile (0b3cbc5c38fc72aba85e98bca992a25880cd1ad9) | Makefile (41d8423f714369ea23708399e02792045f9c3f56) |
---|---|
1# @(#)Makefile 8.2 (Berkeley) 2/3/94 2# $FreeBSD$ 3# 4# All library objects contain FreeBSD revision strings by default; they may be 5# excluded as a space-saving measure. To produce a library that does 6# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS 7# below. Note, there are no IDs for syscall stubs whose sources are generated. 8# To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS 9# (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the 10# system call stubs. 11LIB=c 12SHLIB_MAJOR= 5 | 1# @(#)Makefile 8.2 (Berkeley) 2/3/94 2# $FreeBSD$ 3# 4# All library objects contain FreeBSD revision strings by default; they may be 5# excluded as a space-saving measure. To produce a library that does 6# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS 7# below. Note, there are no IDs for syscall stubs whose sources are generated. 8# To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS 9# (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the 10# system call stubs. 11LIB=c 12SHLIB_MAJOR= 5 |
13SHLIBDIR?=/lib |
|
13CFLAGS+=-I${.CURDIR}/include -I${.CURDIR}/../../include 14CFLAGS+=-I${.CURDIR}/${MACHINE_ARCH} 15CLEANFILES+=tags 16INSTALL_PIC_ARCHIVE= yes 17PRECIOUSLIB= yes 18 19# Define (empty) variables so that make doesn't give substitution 20# errors if the included makefiles don't change these: --- 76 unchanged lines hidden --- | 14CFLAGS+=-I${.CURDIR}/include -I${.CURDIR}/../../include 15CFLAGS+=-I${.CURDIR}/${MACHINE_ARCH} 16CLEANFILES+=tags 17INSTALL_PIC_ARCHIVE= yes 18PRECIOUSLIB= yes 19 20# Define (empty) variables so that make doesn't give substitution 21# errors if the included makefiles don't change these: --- 76 unchanged lines hidden --- |