summaryrefslogtreecommitdiff
path: root/prepare
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2022-12-01 22:30:22 +0100
committerBond_009 <bond.009@outlook.com>2022-12-01 22:30:22 +0100
commitbaf4910870a6e8999802b9a4a22eabd4142a34e3 (patch)
tree2d11443dc21e53bd0d99d015cf789937d6d95862 /prepare
parent49d0c908f24b2c193c9deed1716fe36061ba26a1 (diff)
Move all Advent of Codes into one repo
Diffstat (limited to 'prepare')
-rwxr-xr-xprepare14
1 files changed, 6 insertions, 8 deletions
diff --git a/prepare b/prepare
index 1702aa0..a3cd635 100755
--- a/prepare
+++ b/prepare
@@ -1,9 +1,7 @@
-#!/usr/bin/env bash
+#!/bin/sh
-cd ${1#0}
-file="part$2.c"
-if test -f "part$2_fast.c"
-then
- file="part$2_fast.c"
-fi
-clang -Wall -pedantic -O3 -march=native -mtune=native -flto -s -static -o ../run "part$2.c"
+set -ef
+
+cd 2022
+./prepare "$1" "$2"
+cp run ../run