aboutsummaryrefslogtreecommitdiffhomepage
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile5
1 files changed, 1 insertions, 4 deletions
diff --git a/justfile b/justfile
index d932989..71da21c 100644
--- a/justfile
+++ b/justfile
@@ -1,5 +1,3 @@
-all: build
-
build N="1":
#!/usr/bin/env bash
set -e
@@ -13,8 +11,7 @@ build N="1":
cc="./build/ducc$(({{N}} - 1))"
target=ducc{{N}}
fi
- # TODO: Remove --always-make once ducc supports -MD.
- CC="$cc" TARGET="$target" make --always-make
+ CC="$cc" TARGET="$target" make
build-upto-5-gen:
just build 1