summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorawy <awy@awy.one>2025-08-23 23:59:30 +0300
committerawy <awy@awy.one>2025-08-23 23:59:30 +0300
commit5a0107ba1e9388a3d4ade7faa06a1c94786ae3d2 (patch)
tree50938c25191f646990147158b1a4ead8c22a2028 /Makefile
parentb3526d31b40dbdf37ea4b314c8e9aa94d39b7f8c (diff)
add sttorrent
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 54c19ff..7dfea64 100644
--- a/Makefile
+++ b/Makefile
@@ -14,6 +14,9 @@ all: $(PROGS)
$(BINDIR)/stmusic: $(SRCDIR)/stmusic.c
$(CC) $(CFLAGS) -o $@ $< -lmpdclient
+$(BINDIR)/sttorrent: $(SRCDIR)/sttorrent.c
+ $(CC) $(CFLAGS) -o $@ $(SRCDIR)/cjson/cJSON.c $< -lcurl
+
$(BINDIR)/%: $(SRCDIR)/%.c
$(CC) $(CFLAGS) -o $@ $<