aboutsummaryrefslogtreecommitdiff
path: root/Makefiles/go.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Makefiles/go.mk')
-rw-r--r--Makefiles/go.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefiles/go.mk b/Makefiles/go.mk
new file mode 100644
index 0000000..b5e95cd
--- /dev/null
+++ b/Makefiles/go.mk
@@ -0,0 +1,13 @@
+.POSIX:
+
+all:
+ sed '/START PART 2/,/END PART 2/d' puzzles.go >tmp1.go
+ sed '/START PART 1/,/END PART 1/d' puzzles.go >tmp2.go
+ go build tmp1.go
+ go build tmp2.go
+ mv tmp1 puzzle-1
+ mv tmp2 puzzle-2
+ rm -f tmp[12].go
+
+clean:
+ rm -f puzzle-[12]