chiark / gitweb /
Rename *.test.tcl to test-load.tcl
[chiark-tcl.git] / Makefile
index d0462d6fc767f5c39cc22c67f1d47414b4fcdb8d..74fc544ad13fa7a8feb90bf7288f6ff5b7803427 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,22 @@
 
-SUBDIRS=       base adns hbytes crypto
-# dgram tuntap
+SUBDIRS=       base adns hbytes cdb crypto dgram
+
+ifneq ($(wildcard /usr/include/linux/if_tun.h),)
+SUBDIRS+=      tuntap
+endif
+
+ifneq ($(wildcard /usr/include/wiringPi.h /usr/include/arm-*/wiringPi.h),)
+SUBDIRS+=      wiringpi
+endif
 
 default: all
 
 clean all:
        set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
+
+# To find undefined symbols when implementing, for example:
+#
+# liberator:chiark-tcl> LD_LIBRARY_PATH=:adns:base:cdb:crypto:dgram:hbytes:tuntap tclsh8.3
+# % load chiark_tcl_tuntap-1.so
+# couldn't load file "chiark_tcl_tuntap-1.so": tuntap/chiark_tcl_tuntap-1.so: undefined symbol: cht_tunsocket_entries
+# %