summaryrefslogtreecommitdiff
path: root/src/cmd/dice/makefile
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@simplelittledream.com>2021-10-10 19:24:20 -0400
committerJacob McDonnell <jacob@simplelittledream.com>2021-10-10 19:24:20 -0400
commit3d284b88f4682ebaffe3680fdb9d63c6ad4ec7e0 (patch)
treeff5e09cd1262e55d3bfc2af9a55d101f2223fe26 /src/cmd/dice/makefile
Initial Commit
Diffstat (limited to 'src/cmd/dice/makefile')
-rw-r--r--src/cmd/dice/makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cmd/dice/makefile b/src/cmd/dice/makefile
new file mode 100644
index 0000000..5c0e384
--- /dev/null
+++ b/src/cmd/dice/makefile
@@ -0,0 +1,10 @@
+all: dice
+ @cp dice $(PROROOT)/build/bin/dice
+
+dice: dice.c
+ $(CC) -o dice dice.c
+
+clean:
+ @rm -r dice
+
+.PHONY: all clean \ No newline at end of file