aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rules.mk
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-16 10:39:05 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-16 10:39:05 -0700
commit6c9563e91eb7aa738aa2656d141ce56ef66b50cf (patch)
tree85fd9a50777ae8f5ec14ca112d26c5f4b9262113 /sys/cmd/rules.mk
parent3f7474df0645224ce61fedcd908028f41971189e (diff)
feat: added directory for command line tools
Diffstat (limited to 'sys/cmd/rules.mk')
-rw-r--r--sys/cmd/rules.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/cmd/rules.mk b/sys/cmd/rules.mk
new file mode 100644
index 0000000..a692dfa
--- /dev/null
+++ b/sys/cmd/rules.mk
@@ -0,0 +1,11 @@
+include share/push.mk
+
+# Iterate through subdirectory tree
+
+DIR := $(d)/cat
+include $(DIR)/rules.mk
+
+DIR := $(d)/cc
+include $(DIR)/rules.mk
+
+include share/pop.mk