httpdirfs/Makefile

100 lines
2.5 KiB
Makefile
Raw Normal View History

VERSION = 1.2.5
2021-09-03 13:40:35 +02:00
CFLAGS += -g -O2 -Wall -Wextra -Wshadow \
-fanalyzer -Wno-analyzer-file-leak \
-rdynamic -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DVERSION=\"$(VERSION)\"\
`pkg-config --cflags-only-I gumbo libcurl fuse uuid expat`
LDFLAGS += `pkg-config --libs-only-L gumbo libcurl fuse uuid expat`
2021-05-27 20:49:51 +02:00
LIBS = -pthread -lgumbo -lcurl -lfuse -lcrypto -lexpat
2021-08-22 01:51:37 +02:00
COBJS = main.o network.o fuse_local.o link.o cache.o util.o sonic.o log.o\
2021-09-04 13:40:37 +02:00
config.o memcache.o
2018-07-18 17:26:26 +02:00
OS := $(shell uname)
2021-05-27 20:49:51 +02:00
ifeq ($(OS),Darwin)
BREW_PREFIX := $(shell brew --prefix)
CFLAGS += -I$(BREW_PREFIX)/opt/openssl/include \
-I$(BREW_PREFIX)/opt/curl/include
LDFLAGS += -L$(BREW_PREFIX)/opt/openssl/lib \
-L$(BREW_PREFIX)/opt/curl/lib
else
LIBS += -luuid
endif
ifeq ($(OS),FreeBSD)
LIBS += -lexecinfo
endif
prefix ?= /usr/local
all: httpdirfs
2019-01-25 03:19:22 +01:00
2019-01-25 03:36:15 +01:00
%.o: src/%.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -c -o $@ $<
2018-07-18 17:26:26 +02:00
2019-01-25 03:19:58 +01:00
httpdirfs: $(COBJS)
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
2018-07-18 17:26:26 +02:00
2018-07-24 15:33:03 +02:00
install:
ifeq ($(OS),Linux)
install -m 755 -D httpdirfs \
$(DESTDIR)$(prefix)/bin/httpdirfs
install -m 644 -D doc/man/httpdirfs.1 \
$(DESTDIR)$(prefix)/share/man/man1/httpdirfs.1
endif
ifeq ($(OS),FreeBSD)
install -m 755 httpdirfs \
$(DESTDIR)$(prefix)/bin/httpdirfs
gzip -f -k doc/man/httpdirfs.1
install -m 644 doc/man/httpdirfs.1.gz \
$(DESTDIR)$(prefix)/man/man1/httpdirfs.1.gz
endif
2021-05-27 21:38:22 +02:00
ifeq ($(OS),Darwin)
install -d $(DESTDIR)$(prefix)/bin
2021-05-27 21:38:22 +02:00
install -m 755 httpdirfs \
$(DESTDIR)$(prefix)/bin/httpdirfs
install -d $(DESTDIR)$(prefix)/share/man/man1
install -m 644 doc/man/httpdirfs.1 \
$(DESTDIR)$(prefix)/share/man/man1/httpdirfs.1
endif
2018-07-24 15:33:03 +02:00
man: httpdirfs
mkdir -p doc/man
help2man --name "mount HTTP directory as a virtual filesystem" \
--no-discard-stderr ./httpdirfs > doc/man/httpdirfs.1
doc:
doxygen Doxyfile
format:
2021-09-03 16:41:22 +02:00
astyle --style=kr --align-pointer=name --max-code-length=80 src/*.c src/*.h
2018-07-18 17:26:26 +02:00
clean:
2021-08-31 19:55:56 +02:00
-rm -f src/*.h~
-rm -f src/*.c~
2021-09-03 15:56:11 +02:00
-rm -f src/*orig
-rm -f *.o
-rm -f httpdirfs
2019-01-25 03:19:22 +01:00
distclean: clean
-rm -rf doc/html
-rm -rf doc/man/httpdirfs.1
2019-01-25 03:19:22 +01:00
2019-01-25 03:21:18 +01:00
uninstall:
-rm -f $(DESTDIR)$(prefix)/bin/httpdirfs
ifeq ($(OS),Linux)
2019-01-25 03:21:18 +01:00
-rm -f $(DESTDIR)$(prefix)/share/man/man1/httpdirfs.1
endif
ifeq ($(OS),FreeBSD)
-rm -f $(DESTDIR)$(prefix)/man/man1/httpdirfs.1.gz
endif
2021-06-05 10:07:46 +02:00
ifeq ($(OS),Darwin)
-rm -f $(DESTDIR)$(prefix)/share/man/man1/httpdirfs.1
endif
2019-01-25 03:21:18 +01:00
depend: .depend
.depend: src/*.c
rm -f ./.depend
$(CC) $(CFLAGS) -MM $^ -MF ./.depend;
include .depend
.PHONY: all man doc install clean distclean uninstall depend format