diff options
author | awy <awy@awy.one> | 2025-08-23 23:59:30 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-08-23 23:59:30 +0300 |
commit | 5a0107ba1e9388a3d4ade7faa06a1c94786ae3d2 (patch) | |
tree | 50938c25191f646990147158b1a4ead8c22a2028 /Makefile | |
parent | b3526d31b40dbdf37ea4b314c8e9aa94d39b7f8c (diff) |
add sttorrent
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 $@ $< |