Deleted Added
full compact
Makefile (252356) Makefile (254273)
1# @(#)Makefile 8.2 (Berkeley) 1/4/94
1# @(#)Makefile 8.2 (Berkeley) 1/4/94
2# $FreeBSD: head/include/Makefile 252356 2013-06-28 21:00:08Z davide $
2# $FreeBSD: head/include/Makefile 254273 2013-08-13 07:15:01Z peter $
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 \

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

67.if ${MK_GPIB} != "no"
68_dev_ieee488= dev/ieee488
69.endif
70
71.if ${MK_HESIOD} != "no"
72INCS+= hesiod.h
73.endif
74
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 \

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

67.if ${MK_GPIB} != "no"
68_dev_ieee488= dev/ieee488
69.endif
70
71.if ${MK_HESIOD} != "no"
72INCS+= hesiod.h
73.endif
74
75.if ${MK_ICONV} != "no"
76INCS+= iconv.h
77.endif
78
79.if ${MK_BLUETOOTH} != "no"
80LSUBSUBDIRS+= netgraph/bluetooth/include
81.endif
82
83# XXX unconditionally needed by <netsmb/netbios.h>
84#.if ${MK_IPX} != "no"
85_netipx= netipx
86#.endif
87
75.if ${MK_BLUETOOTH} != "no"
76LSUBSUBDIRS+= netgraph/bluetooth/include
77.endif
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
94.endif
95.endif
96
97
88# Define SHARED to indicate whether you want symbolic links to the system
89# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is
90# probably only useful for developers and should be avoided if you do not
91# wish to tie your /usr/include and /usr/src together.
92#SHARED= symlinks
93SHARED?= copies
94
95INCS+= osreldate.h

--- 243 unchanged lines hidden ---
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
104
105INCS+= osreldate.h

--- 243 unchanged lines hidden ---