summaryrefslogtreecommitdiff
path: root/libc/inet/rpc/Makefile
blob: 8c22293749b8c51276716e1980aaed3278d89c9c (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
CC=$(CROSS)gcc
AR=$(CROSS)ar
RANLIB=$(CROSS)ranlib

CFLAGS= -O2 -fomit-frame-pointer -Dlinux -I../include

OBJS = auth_none.o auth_unix.o authunix_prot.o \
	bindresvport.o clnt_generic.o clnt_perror.o \
	clnt_raw.o clnt_simple.o clnt_tcp.o clnt_udp.o \
	get_myaddress.o getrpcent.o getrpcport.o pmap_clnt.o \
	pmap_getmaps.o pmap_getport.o pmap_prot.o pmap_prot2.o \
	pmap_rmt.o rpc_callmsg.o rpc_commondata.o \
	rpc_dtablesize.o rpc_prot.o svc.o svc_auth.o \
	svc_auth_unix.o svc_raw.o svc_run.o svc_simple.o \
	svc_tcp.o svc_udp.o xdr.o xdr_array.o xdr_float.o \
	xdr_mem.o xdr_rec.o xdr_reference.o xdr_stdio.o

LIBC = ../libc.a

all: $(LIBC)

$(LIBC): $(LIBC)($(OBJS))

clean:
	rm -f *.[oa] *~ core