aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2021-12-09 17:51:53 +0100
committerDrew DeVault <sir@cmpwn.com>2021-12-09 17:51:53 +0100
commit1307e019183ed0032e112fcc6c6b840c2946fa05 (patch)
treef753a82e71c28b9d19599d8796a1cd4efee0460b
parentcmd/demo: remove unused import (diff)
downloadhare-chip8-1307e019183ed0032e112fcc6c6b840c2946fa05.tar.gz
Makefile: drop -T+libc
This is implied by -l
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f6eb43f..afbbfd2 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,9 @@
LIBS=-lc -lSDL2_image -lSDL2
demo:
- hare build $(LIBS) -T+libc cmd/demo
+ hare build $(LIBS) cmd/demo
run:
- hare run $(LIBS) -T+libc cmd/demo
+ hare run $(LIBS) cmd/demo
.PHONY: demo run