diff options
author | default <nobody@localhost> | 2022-12-09 18:49:44 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-12-09 18:49:44 +0100 |
commit | 32b52bb1097e404d0fad9e4a11d2a5686b675e26 (patch) | |
tree | 84945ccb246688ebd54b752543e912b41c885ba8 | |
parent | 1b73c542a9a6c129ed419781f1795c97f1aa6c71 (diff) | |
parent | 16a7fc0b25cd592c6aa3a0d2a0357b5c389a0ee6 (diff) |
Merge branch 'master' of grunfink-codeberg:grunfink/snac2
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,15 +1,15 @@ PREFIX=/usr/local PREFIX_MAN=$(PREFIX)/man -CFLAGS=-g -Wall +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 upgrade.o - $(CC) $(CFLAGS) -L/usr/local/lib *.o -lcurl -lcrypto -pthread -o $@ + $(CC) $(CFLAGS) -L/usr/local/lib *.o -lcurl -lcrypto -pthread $(LDFLAGS) -o $@ .c.o: - $(CC) $(CFLAGS) -I/usr/local/include -c $< + $(CC) $(CFLAGS) $(CPPFLAGS) -I/usr/local/include -c $< clean: rm -rf *.o *.core snac makefile.depend @@ -18,6 +18,7 @@ dep: $(CC) -I/usr/local/include -MM *.c > makefile.depend install: + mkdir -p -m 755 $(PREFIX)/bin install -m 755 snac $(PREFIX)/bin/snac mkdir -p -m 755 $(PREFIX_MAN)/man1 install -m 644 doc/snac.1 $(PREFIX_MAN)/man1/snac.1 |