Deleted Added
full compact
Makefile (256281) Makefile (258230)
1# @(#)Makefile 8.2 (Berkeley) 1/4/94
1# @(#)Makefile 8.2 (Berkeley) 1/4/94
2# $FreeBSD: stable/10/include/Makefile 255949 2013-09-30 17:23:45Z des $
2# $FreeBSD: stable/10/include/Makefile 258230 2013-11-16 18:40:44Z gjb $
3#
4# Doing a "make install" builds /usr/include.
5
6.include <bsd.own.mk>
7
8CLEANFILES= osreldate.h version vers.c
9SUBDIR= arpa gssapi protocols rpcsvc rpc xlocale
10INCS= a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \

--- 67 unchanged lines hidden (view full) ---

78
79# XXX unconditionally needed by <netsmb/netbios.h>
80#.if ${MK_IPX} != "no"
81_netipx= netipx
82#.endif
83
84# Handle the #define aliases for libiconv
85.if ${MK_ICONV} == "yes"
3#
4# Doing a "make install" builds /usr/include.
5
6.include <bsd.own.mk>
7
8CLEANFILES= osreldate.h version vers.c
9SUBDIR= arpa gssapi protocols rpcsvc rpc xlocale
10INCS= a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \

--- 67 unchanged lines hidden (view full) ---

78
79# XXX unconditionally needed by <netsmb/netbios.h>
80#.if ${MK_IPX} != "no"
81_netipx= netipx
82#.endif
83
84# Handle the #define aliases for libiconv
85.if ${MK_ICONV} == "yes"
86CLEANFILES+= _libiconv_compat.h
87INCS+= _libiconv_compat.h iconv.h
88_libiconv_compat.h: ${.CURDIR}/Makefile
89 echo "/* Indicate whether libiconv symbols are present */" > _libiconv_compat.h
90.if ${MK_LIBICONV_COMPAT} == "yes"
91 echo "#define __LIBICONV_COMPAT" >> _libiconv_compat.h
92.else
93 echo "#undef __LIBICONV_COMPAT" >> _libiconv_compat.h
86INCS+= iconv.h
94.endif
87.endif
95.endif
96
97
98# Define SHARED to indicate whether you want symbolic links to the system
99# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is
100# probably only useful for developers and should be avoided if you do not
101# wish to tie your /usr/include and /usr/src together.
102#SHARED= symlinks
103SHARED?= copies

--- 239 unchanged lines hidden ---
88
89
90# Define SHARED to indicate whether you want symbolic links to the system
91# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is
92# probably only useful for developers and should be avoided if you do not
93# wish to tie your /usr/include and /usr/src together.
94#SHARED= symlinks
95SHARED?= copies

--- 239 unchanged lines hidden ---