summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/stand/libsa/Makefile,v
blob: 00ad6d0e1573a6428458bd87485d7a91d5052f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
head	1.1;
access;
symbols;
locks
	build:1.1; strict;
comment	@# @;


1.1
date	96.02.03.01.43.48;	author build;	state Exp;
branches;
next	;


desc
@back up
@


1.1
log
@Initial revision
@
text
@#	$Id: Makefile,v,v 1.1 1997/03/03 19:30:37 rahnds Exp $

LIB=sa

CLEANFILES+=SRT0.o SRT1.o

NOPIC=nopic
NOPROFILE=noprofile

# Logically src/sys
S=${.CURDIR}/../../../..
DIR_SA=$S/lib/libsa
DIR_KERN=$S/lib/libkern

SRC_net= nfs.c rpc.c net.c ether.c arp.c in_cksum.c netif.c \
	 bootparam.c rarp.c


SRC_sa = alloc.c bcopy.c memcpy.c close.c getfile.c open.c \
	 printf.c read.c strerror.c ufs.c globals.c lseek.c \
	 closeall.c dev.c dkcksum.c nullfs.c fstat.c

SRC_kern= ashrdi3.c bcmp.c bzero.c strcmp.c strlen.c

SRC_sun3= exec_sun.c

SRC_here= clock.c devopen.c dvma.c \
	 gets.c panic.c \
	 promboot.c promcons.c

SRCS= ${SRC_net} ${SRC_sa} ${SRC_kern} ${SRC_sun3} ${SRC_here}

# DBG= -DDEBUG -DNETIF_DEBUG -DNFS_DEBUG -DRPC_DEBUG \
# 	-DNET_DEBUG -DRARP_DEBUG -DETHER_DEBUG

#DEFS= -DCOMPAT_UFS
INCL= -I. -I${S}/lib/libsa -I${S}
COPTS= #-fno-defer-pop
CFLAGS= -O2 ${COPTS} ${DEFS} ${DBG} ${INCL}

.PATH:  ${DIR_SA} ${DIR_KERN} ../../sun3

all: libsa.a SRT0.o SRT1.o

install:

.include <bsd.lib.mk>
@