summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-01-13 09:12:16 +0100
committerdefault <nobody@localhost>2024-01-13 09:12:16 +0100
commit6c556581e0d7137cd230b4569a0a833e9dae4e81 (patch)
tree4657c9f9756a9baba69664504243a65838b31e00 /Makefile
parenta0cb5c60cdbf7855fa0c2842113797be2a206226 (diff)
Rewritten a sentence to be clearer in README.md.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2612b7d..04e80fd 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ all: snac
snac: snac.o main.o data.o http.o httpd.o webfinger.o \
activitypub.o html.o utils.o format.o upgrade.o mastoapi.o
- $(CC) $(CFLAGS) -L/usr/local/lib *.o -lcurl -lcrypto -pthread $(LDFLAGS) -o $@
+ $(CC) $(CFLAGS) -L/usr/local/lib *.o -lcurl -lcrypto $(LDFLAGS) -pthread -o $@
.c.o:
$(CC) $(CFLAGS) $(CPPFLAGS) -I/usr/local/include -c $<