summaryrefslogtreecommitdiffstats
path: root/mkfile
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-09-19 20:11:32 -0400
committerSam Anthony <sam@samanthony.xyz>2024-09-19 20:11:32 -0400
commitd439ed77546a00929ddd55bf44d65b448d9d520c (patch)
treecf1070d32e766c0fe5d753aebee840f0be67756f /mkfile
parent8944ad075c6b12bbda1273ec31efade801892c19 (diff)
downloadballs-d439ed77546a00929ddd55bf44d65b448d9d520c.zip
pretty good collisions
Diffstat (limited to 'mkfile')
-rw-r--r--mkfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/mkfile b/mkfile
index f5c1922..e43c880 100644
--- a/mkfile
+++ b/mkfile
@@ -1,14 +1,17 @@
CC=9c
LD=9l
O=o
+LDFLAGS=
OBJ = balls.$O vec.$O collision.$O
balls: $OBJ
- $LD -o balls $OBJ
+ $LD -o balls $OBJ $LDFLAGS
%.$O: %.c
$CC $CFLAGS $stem.c
+OBJ: balls.h
+
clean:V:
rm -f ./*.$O balls \ No newline at end of file