Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly into...
[dragonfly.git] / lib / libstand / Makefile
1 # $FreeBSD: src/lib/libstand/Makefile,v 1.14.2.10 2002/07/22 14:21:50 ru Exp $
2 # $DragonFly: src/lib/libstand/Makefile,v 1.12 2008/10/28 16:54:09 swildner Exp $
3 #
4 # Originally from       $NetBSD: Makefile,v 1.21 1997/10/26 22:08:38 lukem Exp $
5 #
6 # Notes:
7 # - We don't use the libc strerror/sys_errlist because the string table is
8 #   quite large.
9 #
10
11 LIB=            stand
12 NOPROFILE=      YES
13 NOPIC=          YES
14 INCS=           stand.h
15 MAN=            libstand.3
16
17 # Mostly OK, some of the libc imports are a bit noisy
18 CFLAGS+=        -ffreestanding -std=c99
19
20 .if ${MACHINE_ARCH} == "amd64"
21 CFLAGS+=        -m32 -mpreferred-stack-boundary=2
22 .endif
23 .if ${MACHINE_ARCH} == "i386"
24 CFLAGS+=        -mpreferred-stack-boundary=2
25 .endif
26
27
28 # standalone components and stuff we have modified locally
29 SRCS+=  __main.c assert.c bcd.c bswap.c environment.c getopt.c gets.c \
30         globals.c pager.c printf.c strdup.c strerror.c strtol.c random.c \
31         sbrk.c twiddle.c zalloc.c zalloc_malloc.c
32
33 # private (pruned) versions of libc string functions
34 SRCS+=  strcasecmp.c
35
36 # string functions from libc
37 .PATH:  ${.CURDIR}/../libc/string
38 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
39 SRCS+=  bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \
40         memcpy.c memmove.c memset.c qdivrem.c rindex.c strcat.c strchr.c \
41         strcmp.c strcpy.c strcspn.c strlen.c strncat.c strncmp.c strncpy.c \
42         strpbrk.c strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
43 .endif
44 .PATH:  ${.CURDIR}/../libc/quad
45 .if ${MACHINE_ARCH} == "i386"
46 SRCS+=  ucmpdi2.c
47 .endif
48
49 # _setjmp/_longjmp
50 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
51 .PATH:  ${.CURDIR}/i386
52 .else
53 .endif
54 # really only required for i386
55 CFLAGS+=-I${.CURDIR}/../libc/${MACHINE_ARCH}
56 SRCS+=  _setjmp.S
57
58 # decompression functionality from libbz2
59 BZ2DIR= ${.CURDIR}/../../contrib/bzip2-1.0
60 .PATH:  ${BZ2DIR}
61 CFLAGS+=-I${BZ2DIR} -DBZ_NO_STDIO -DBZ_NO_COMPRESS
62 SRCS+=  bzlib.c crctable.c decompress.c huffman.c randtable.c bzlib.h \
63         bzlib_private.h
64
65 # check your belt - ugly bzip2 stuff ahead
66 .for file in bzlib.c
67 CLEANFILES+=   ${file}
68
69 ${file}: ${BZ2DIR}/${file} ${file}.diff
70         patch -o ${.TARGET} < ${.ALLSRC:M*.diff} ${.ALLSRC:M*.[ch]}
71 .endfor
72
73 .include "../libz/Makefile.stand"
74
75 # io routines
76 SRCS+=  closeall.c dev.c ioctl.c nullfs.c stat.c \
77         fstat.c close.c lseek.c open.c read.c write.c readdir.c
78
79 # network routines
80 SRCS+=  arp.c ether.c inet_ntoa.c in_cksum.c net.c udp.c netif.c rpc.c
81
82 # network info services:
83 SRCS+=  bootp.c rarp.c bootparam.c
84
85 # boot filesystems
86 SRCS+=  ufs.c nfs.c cd9660.c tftp.c zipfs.c bzipfs.c gzipfs.c
87 SRCS+=  netif.c nfs.c
88 SRCS+=  dosfs.c ext2fs.c
89 SRCS+=  splitfs.c
90 SRCS+=  hammerread.c
91
92 .include <bsd.lib.mk>
93
94 .if ${MACHINE_ARCH} == "amd64"
95 CFLAGS+= -I${.OBJDIR}
96
97 beforedepend ${OBJS}: machine cpu
98
99 machine::
100         mkdir -p machine
101         ${LN} -fs ${.CURDIR}/../../sys/cpu/i386/include/* machine
102         ${LN} -fs ${.CURDIR}/../../sys/platform/pc32/include/* machine
103
104 cpu::
105         ${LN} -fs ${.CURDIR}/../../sys/cpu/i386/include cpu
106
107 CLEANDIRS+=     machine cpu
108 .endif