Change nfs-cp.c example to use lseek+read/write instead of pread/pwrite since some...
[deb_libnfs.git] / aros / Makefile.AROS
index 9ad038c2858bdc5198e782bd0e62bfd7bbe4c9a3..6d39137f5cbaa24a1616e939c0ec44f9fbe7a78a 100755 (executable)
@@ -10,7 +10,7 @@ OBJS+=portmap/portmap.o portmap/libnfs-raw-portmap.o
 OBJS+=rquota/rquota.o rquota/libnfs-raw-rquota.o
 OBJS+=aros/aros_compat.o
 
-EXAMPLES=examples/nfsclient-listservers examples/nfsclient-sync
+EXAMPLES=examples/nfsclient-listservers examples/nfsclient-sync examples/nfs-cp examples/nfs-ls
 
 all: lib/libnfs.a $(EXAMPLES)
 
@@ -27,3 +27,8 @@ examples/nfsclient-listservers: examples/nfsclient-listservers.c lib/libnfs.a
 examples/nfsclient-sync: examples/nfsclient-sync.c lib/libnfs.a
        $(CC) $(CFLAGS) -o $@ $< lib/libnfs.a
 
+examples/nfs-ls: examples/nfs-ls.c lib/libnfs.a
+       $(CC) $(CFLAGS) -o $@ $< lib/libnfs.a
+
+examples/nfs-cp: examples/nfs-cp.c lib/libnfs.a
+       $(CC) $(CFLAGS) -o $@ $< lib/libnfs.a