summaryrefslogtreecommitdiffstats
path: root/libbsd_waf.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbsd_waf.py')
-rw-r--r--libbsd_waf.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/libbsd_waf.py b/libbsd_waf.py
index b751c9f5..25a979c1 100644
--- a/libbsd_waf.py
+++ b/libbsd_waf.py
@@ -1018,6 +1018,10 @@ def build(bld):
'rtemsbsd/local/usb_if.c',
'rtemsbsd/mdns/mdns-hostname-default.c',
'rtemsbsd/mdns/mdns.c',
+ 'rtemsbsd/nfsclient/mount_prot_xdr.c',
+ 'rtemsbsd/nfsclient/nfs.c',
+ 'rtemsbsd/nfsclient/nfs_prot_xdr.c',
+ 'rtemsbsd/nfsclient/rpcio.c',
'rtemsbsd/pppd/auth.c',
'rtemsbsd/pppd/ccp.c',
'rtemsbsd/pppd/chap.c',
@@ -1337,6 +1341,16 @@ def build(bld):
lib = ["m", "z"],
install_path = None)
+ test_nfs01 = ['testsuite/nfs01/test_main.c']
+ bld.program(target = "nfs01.exe",
+ features = "cprogram",
+ cflags = cflags,
+ includes = includes,
+ source = test_nfs01,
+ use = ["bsd"],
+ lib = ["m", "z"],
+ install_path = None)
+
test_ping01 = ['testsuite/ping01/test_main.c']
bld.program(target = "ping01.exe",
features = "cprogram",