Browse Source

Also use CFLAGS in the linking phase.

default 2 years ago
parent
commit
9de7175503
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -4,7 +4,7 @@ CFLAGS=-g -Wall
 all: snac
 
 snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o html.o utils.o format.o
-	$(CC) -L/usr/local/lib *.o -lcurl -lcrypto -pthread -o $@
+	$(CC) $(CFLAGS) -L/usr/local/lib *.o -lcurl -lcrypto -pthread -o $@
 
 .c.o:
 	$(CC) $(CFLAGS) -I/usr/local/include -c $<