about summary refs log tree commit diff stats
path: root/build
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-12-07 15:26:05 -0800
committerKartik Agaram <vc@akkartik.com>2019-12-07 18:06:16 -0800
commit72f278ae6bb52e17dbdeac0fce41a794e8dfd0d1 (patch)
tree37a9447622b24894ccb2006b027b61b3b8b8fab8 /build
parentc1d596f56a6f2198ea8ea1b0a90c613e919d891b (diff)
downloadmu-72f278ae6bb52e17dbdeac0fce41a794e8dfd0d1.tar.gz
5797 - move `enumerate/` to `tools/` directory
Diffstat (limited to 'build')
-rwxr-xr-xbuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/build b/build
index 9e95bb34..114fb7cd 100755
--- a/build
+++ b/build
@@ -72,8 +72,8 @@ noisy_cd() {
   echo "-- `pwd`" >&2
 }
 
-older_than enumerate/enumerate enumerate/enumerate.cc && {
-  $CXX $CFLAGS enumerate/enumerate.cc -o enumerate/enumerate
+older_than tools/enumerate tools/enumerate.cc && {
+  $CXX $CFLAGS tools/enumerate.cc -o tools/enumerate
 }
 
 older_than tangle/tangle tangle/*.cc && {
@@ -92,8 +92,8 @@ older_than tangle/tangle tangle/*.cc && {
   noisy_cd ..  # no effect; just to show us returning to the parent directory
 }
 
-LAYERS=$(enumerate/enumerate --until $UNTIL_LAYER  |grep '.cc$')
-older_than subx.cc $LAYERS enumerate/enumerate tangle/tangle && {
+LAYERS=$(tools/enumerate --until $UNTIL_LAYER  |grep '.cc$')
+older_than subx.cc $LAYERS tools/enumerate tangle/tangle && {
   # no update here; rely on 'update' calls downstream
   tangle/tangle $LAYERS  > subx.cc
 }