Home | History | Annotate | Line # | Download | only in libsa
Makefile revision 1.14
      1  1.14   simonb #	$NetBSD: Makefile,v 1.14 2003/02/23 23:23:10 simonb Exp $
      2   1.1  minoura 
      3   1.1  minoura S=		${.CURDIR}/../../../..
      4   1.1  minoura LIBSADIR=	$S/lib/libsa
      5   1.1  minoura LIBKERNDIR=	$S/lib/libkern
      6   1.1  minoura LIBZDIR=	$S/lib/libz
      7   1.1  minoura 
      8   1.1  minoura LIB=		sa
      9   1.1  minoura 
     10   1.1  minoura SRCS+=		alloc.c bcmp.c bcopy.c bzero.c errno.c getfile.c gets.c
     11   1.1  minoura SRCS+=		memcmp.c memcpy.c memset.c panic.c
     12   1.1  minoura SRCS+=		printf.c snprintf.c sprintf.c subr_prf.c twiddle.c vsprintf.c
     13   1.1  minoura 
     14   1.1  minoura SRCS+=		close.c closeall.c cread.c dev.c fstat.c ioctl.c lseek.c
     15   1.1  minoura SRCS+=		open.c read.c stat.c
     16   1.7  thorpej SRCS+=		loadfile.c loadfile_aout.c loadfile_elf32.c
     17  1.14   simonb SRCS+=		cd9660.c lfsv1.c lfsv2.c nfs.c ufs.c ufs_ls.c ustarfs.c
     18   1.4  minoura #SRCS+=		arp.c ether.c in_cksum.c net.c netif.c rpc.c udp.c
     19   1.4  minoura #SRCS+=		bootp.c
     20   1.1  minoura 
     21  1.12    isaki SRCS+=		ashldi3.c ashrdi3.c divdi3.c moddi3.c qdivrem.c
     22  1.13    isaki SRCS+=		strcat.c strchr.c strcmp.c strcpy.c strerror.c strlen.c
     23  1.13    isaki SRCS+=		strncmp.c strrchr.c
     24   1.1  minoura 
     25   1.1  minoura SRCS+=		adler32.c crc32.c infblock.c infcodes.c inffast.c
     26   1.1  minoura SRCS+=		inflate.c inftrees.c infutil.c uncompr.c
     27   1.1  minoura 
     28   1.3  minoura SRCS+=		consio.c devopen.c parseutils.c sdcd.c fd.c fdsub.S chdsk.c
     29   1.6  minoura SRCS+=		putimage.S
     30   1.1  minoura 
     31  1.10       tv NOPROFILE=	# defined
     32  1.10       tv NOPIC=		# defined
     33  1.10       tv NOLINT=		# defined
     34   1.1  minoura 
     35   1.1  minoura CPPFLAGS+=	-I${.OBJDIR} -I${LIBSADIR} -I$S -I${LIBZDIR} -D_STANDALONE
     36   1.1  minoura CPPFLAGS+=	-I${.CURDIR}/../libiocs -I${.CURDIR}/../common
     37   1.1  minoura CPPFLAGS+=	-DHEAP_VARIABLE -D__INTERNAL_LIBSA_CREAD
     38   1.1  minoura CPPFLAGS+=	-D_ZLIB_PRIVATE
     39   1.3  minoura CPPFLAGS+=	-DHAVE_CHANGEDISK_HOOK
     40   1.1  minoura #CPPFLAGS+=	-DDEBUG
     41   1.1  minoura 
     42   1.1  minoura .PATH:	${LIBSADIR} ${LIBKERNDIR} ${LIBZDIR}
     43   1.1  minoura 
     44  1.11    isaki .include "../Makefile.booters"
     45   1.9  minoura 
     46   1.9  minoura # only needed during build
     47   1.9  minoura libinstall::
     48   1.1  minoura 
     49   1.8       tv .include <bsd.own.mk>
     50   1.8       tv .undef DESTDIR
     51   1.1  minoura .include <bsd.lib.mk>
     52