Simplify the upgrade path handling from PPA.
[deb_libnfs.git] / aros / Makefile.AROS
CommitLineData
ee872606
RRS
1AR=ar
2CC=gcc
3CFLAGS=-g -O0 -DAROS=1 -D_U_=" " -DHAVE_SOCKADDR_LEN -I. -Iinclude -Iinclude/nfsc -Iaros -Infs -Imount
4
5OBJS=lib/init.o lib/libnfs.o lib/libnfs-sync.o lib/libnfs-zdr.o lib/pdu.o lib/socket.o
6OBJS+=mount/mount.o mount/libnfs-raw-mount.o
7OBJS+=nfs/nfs.o nfs/nfsacl.o nfs/libnfs-raw-nfs.o
8OBJS+=nlm/nlm.o nlm/libnfs-raw-nlm.o
9OBJS+=portmap/portmap.o portmap/libnfs-raw-portmap.o
10OBJS+=rquota/rquota.o rquota/libnfs-raw-rquota.o
11OBJS+=aros/aros_compat.o
12
13EXAMPLES=examples/nfsclient-listservers examples/nfsclient-sync examples/nfs-cp examples/nfs-ls
14
15all: lib/libnfs.a $(EXAMPLES)
16
17lib/libnfs.a: $(OBJS)
18 $(AR) cru $@ $(OBJS)
19
20.c.o:
21 echo $(CC) $(CFLAGS) -c -o $@ $<
22 $(CC) $(CFLAGS) -c -o $@ $<
23
24install: all
25 cp lib/libnfs.a GCC:lib
26 mkdir -p INCLUDE:nfsc
27 cp include/nfsc/libnfs.h INCLUDE:nfsc
28 cp include/nfsc/libnfs-raw.h INCLUDE:nfsc
29 cp include/nfsc/libnfs-zdr.h INCLUDE:nfsc
30 cp mount/libnfs-raw-mount.h INCLUDE:nfsc
31 cp nlm/libnfs-raw-nlm.h INCLUDE:nfsc
32 cp nfs/libnfs-raw-nfs.h INCLUDE:nfsc
33 cp portmap/libnfs-raw-portmap.h INCLUDE:nfsc
34 cp rquota/libnfs-raw-rquota.h INCLUDE:nfsc
35
36examples/nfsclient-listservers: examples/nfsclient-listservers.c lib/libnfs.a
37 $(CC) $(CFLAGS) -o $@ $< lib/libnfs.a
38
39examples/nfsclient-sync: examples/nfsclient-sync.c lib/libnfs.a
40 $(CC) $(CFLAGS) -o $@ $< lib/libnfs.a
41
42examples/nfs-ls: examples/nfs-ls.c lib/libnfs.a
43 $(CC) $(CFLAGS) -o $@ $< lib/libnfs.a
44
45examples/nfs-cp: examples/nfs-cp.c lib/libnfs.a
46 $(CC) $(CFLAGS) -o $@ $< lib/libnfs.a