Makefile revision 260096
1# $FreeBSD: stable/10/lib/libstand/Makefile 260096 2013-12-30 20:15:46Z dim $
2# Originally from	$NetBSD: Makefile,v 1.21 1997/10/26 22:08:38 lukem Exp $
3#
4# Notes:
5# - We don't use the libc strerror/sys_errlist because the string table is
6#   quite large.
7#
8
9.include <bsd.own.mk>
10MK_SSP=		no
11
12LIB=		stand
13NO_PROFILE=
14NO_PIC=
15INCS=		stand.h
16MAN=		libstand.3
17
18WARNS?=		0
19
20CFLAGS+= -ffreestanding -Wformat
21CFLAGS+= -I${.CURDIR}
22
23.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
24CFLAGS.gcc+=	-mpreferred-stack-boundary=2
25CFLAGS+=	-mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
26.endif
27.if ${MACHINE} == "pc98"
28CFLAGS+=	-Os
29.endif
30.if ${MACHINE_CPUARCH} == "powerpc"
31CFLAGS+=	-msoft-float -D_STANDALONE -DNETIF_DEBUG
32.endif
33.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "powerpc64"
34CFLAGS+=	-m32 -I.
35.endif
36.if ${MACHINE_CPUARCH} == "arm"
37CFLAGS+=	-msoft-float -D_STANDALONE
38.endif
39.if ${MACHINE_CPUARCH} == "mips"
40CFLAGS+=	-G0 -fno-pic -mno-abicalls
41.endif
42
43# standalone components and stuff we have modified locally
44SRCS+=	gzguts.h zutil.h __main.c assert.c bcd.c bswap.c environment.c getopt.c gets.c \
45	globals.c pager.c printf.c strdup.c strerror.c strtol.c strtoul.c random.c \
46	sbrk.c twiddle.c zalloc.c zalloc_malloc.c
47
48# private (pruned) versions of libc string functions
49SRCS+=	strcasecmp.c
50
51.PATH: ${.CURDIR}/../libc/net
52
53SRCS+= ntoh.c
54
55# string functions from libc
56.PATH: ${.CURDIR}/../libc/string
57.if ${MACHINE_CPUARCH} != "ia64"
58SRCS+=	bcmp.c bcopy.c bzero.c ffs.c memccpy.c memchr.c memcmp.c memcpy.c \
59	memmove.c memset.c qdivrem.c strcat.c strchr.c strcmp.c strcpy.c \
60	strcspn.c strlen.c strncat.c strncmp.c strncpy.c strpbrk.c \
61	strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
62.endif
63.if ${MACHINE_CPUARCH} == "arm"
64.PATH: ${.CURDIR}/../libc/arm/gen
65
66.if ${MK_ARM_EABI} == "no"
67SRCS+= divsi3.S
68.else
69# Compiler support functions
70.PATH: ${.CURDIR}/../../contrib/compiler-rt/lib/
71# __clzsi2 and ctzsi2 for various builtin functions
72SRCS+=	clzsi2.c ctzsi2.c
73# Divide and modulus functions called by the compiler
74SRCS+=	 divmoddi4.c  divmodsi4.c  divdi3.c  divsi3.c  moddi3.c  modsi3.c
75SRCS+=	udivmoddi4.c udivmodsi4.c udivdi3.c udivsi3.c umoddi3.c umodsi3.c
76
77.PATH: ${.CURDIR}/../../contrib/compiler-rt/lib/arm/
78SRCS+=	aeabi_idivmod.S aeabi_ldivmod.S aeabi_uidivmod.S aeabi_uldivmod.S
79SRCS+=	aeabi_memcmp.S aeabi_memcpy.S aeabi_memmove.S aeabi_memset.S
80.endif
81
82.endif
83.if ${MACHINE_CPUARCH} == "ia64"
84.PATH: ${.CURDIR}/../libc/ia64/string
85SRCS+=	bcmp.c bcopy.S bzero.S ffs.S memccpy.c memchr.c memcmp.c memcpy.S \
86	memmove.S memset.c strcat.c strchr.c strcmp.c strcpy.c strcspn.c \
87	strlen.c strncat.c strncmp.c strncpy.c strpbrk.c strrchr.c strsep.c \
88	strspn.c strstr.c strtok.c swab.c
89
90.PATH: ${.CURDIR}/../libc/ia64/gen
91SRCS+= __divdi3.S __divsi3.S __moddi3.S __modsi3.S
92SRCS+= __udivdi3.S __udivsi3.S __umoddi3.S __umodsi3.S
93.endif
94.if ${MACHINE_CPUARCH} == "powerpc"
95.PATH: ${.CURDIR}/../libc/quad
96SRCS+=	ashldi3.c ashrdi3.c
97.PATH: ${.CURDIR}/../libc/powerpc/gen
98SRCS+=	syncicache.c
99.endif
100
101# uuid functions from libc
102.PATH: ${.CURDIR}/../libc/uuid
103SRCS+= uuid_equal.c uuid_is_nil.c
104
105# _setjmp/_longjmp
106.if ${MACHINE_CPUARCH} == "amd64"
107.PATH: ${.CURDIR}/i386
108.elif ${MACHINE_ARCH} == "powerpc64"
109.PATH: ${.CURDIR}/powerpc
110.else
111.PATH: ${.CURDIR}/${MACHINE_CPUARCH}
112.endif
113SRCS+=	_setjmp.S
114
115# decompression functionality from libbz2
116# NOTE: to actually test this functionality after libbz2 upgrade compile
117# loader(8) with LOADER_BZIP2_SUPPORT defined
118.PATH: ${.CURDIR}/../../contrib/bzip2
119CFLAGS+= -DBZ_NO_STDIO -DBZ_NO_COMPRESS
120SRCS+=	libstand_bzlib_private.h
121
122.for file in bzlib.c crctable.c decompress.c huffman.c randtable.c
123SRCS+=	_${file}
124CLEANFILES+=	_${file}
125
126_${file}: ${file}
127	sed "s|bzlib_private\.h|libstand_bzlib_private.h|" ${.ALLSRC} > ${.TARGET}
128.endfor
129
130CLEANFILES+= libstand_bzlib_private.h
131libstand_bzlib_private.h: bzlib_private.h
132	sed -e 's|<stdlib.h>|"stand.h"|' \
133		${.ALLSRC} > ${.TARGET}
134
135# decompression functionality from libz
136.PATH: ${.CURDIR}/../libz
137CFLAGS+=-DHAVE_MEMCPY -I${.CURDIR}/../libz
138SRCS+=	adler32.c crc32.c libstand_zutil.h libstand_gzguts.h
139
140.for file in infback.c inffast.c inflate.c inftrees.c zutil.c
141SRCS+=	_${file}
142CLEANFILES+=	_${file}
143
144_${file}: ${file}
145	sed -e "s|zutil\.h|libstand_zutil.h|" \
146	    -e "s|gzguts\.h|libstand_gzguts.h|" \
147	    ${.ALLSRC} > ${.TARGET}
148.endfor
149
150# depend on stand.h being able to be included multiple times
151.for file in zutil.h gzguts.h
152CLEANFILES+= libstand_${file}
153libstand_${file}: ${file}
154	sed -e 's|<fcntl.h>|"stand.h"|' \
155	    -e 's|<stddef.h>|"stand.h"|' \
156	    -e 's|<string.h>|"stand.h"|' \
157	    -e 's|<stdio.h>|"stand.h"|' \
158	    -e 's|<stdlib.h>|"stand.h"|' \
159	    ${.ALLSRC} > ${.TARGET}
160.endfor
161
162# io routines
163SRCS+=	closeall.c dev.c ioctl.c nullfs.c stat.c \
164	fstat.c close.c lseek.c open.c read.c write.c readdir.c
165
166# network routines
167SRCS+=	arp.c ether.c inet_ntoa.c in_cksum.c net.c udp.c netif.c rpc.c
168
169# network info services:
170SRCS+=	bootp.c rarp.c bootparam.c
171
172# boot filesystems
173SRCS+=	ufs.c nfs.c cd9660.c tftp.c gzipfs.c bzipfs.c
174SRCS+=	dosfs.c ext2fs.c
175SRCS+=	splitfs.c
176.if ${MK_NAND} != "no"
177SRCS+=	nandfs.c
178.endif
179
180.include <bsd.lib.mk>
181
182.if ${MACHINE_CPUARCH} == "amd64"
183beforedepend ${OBJS}: machine
184cleandepend: cleanmachine
185cleanmachine:
186	rm -f machine
187
188machine:
189	ln -s ${.CURDIR}/../../sys/i386/include machine
190.endif
191