httpdirfs/Makefile

22 lines
378 B
Makefile
Raw Normal View History

2018-07-18 17:26:26 +02:00
CC=gcc
CFLAGS+= -g -O2 -Wall -Wextra -lgumbo -lcurl -lfuse -lcrypto \
-D_FILE_OFFSET_BITS=64
2018-07-26 11:29:44 +02:00
OBJ = main.o network.o fuse_local.o link.o
2018-07-18 17:26:26 +02:00
2018-07-19 10:27:40 +02:00
%.o: %.c
$(CC) -c -o $@ $< $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
2018-07-18 17:26:26 +02:00
2018-07-23 02:27:03 +02:00
httpdirfs: $(OBJ)
$(CC) -o $@ $^ $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
2018-07-18 17:26:26 +02:00
2018-07-24 15:33:03 +02:00
install:
cp httpdirfs ${HOME}/bin/
doc:
doxygen Doxyfile
2018-07-18 17:26:26 +02:00
.PHONY: clean
clean:
rm -rf *.o httpdirfs html