httpdirfs/Makefile

16 lines
237 B
Makefile
Raw Normal View History

2018-07-18 17:26:26 +02:00
CC=gcc
2018-07-19 01:03:23 +02:00
CFLAGS=-I. -Wall -Wextra -lgumbo -lcurl -g
2018-07-18 17:26:26 +02:00
DEPS =
2018-07-19 01:03:23 +02:00
OBJ = main.o link.o test.o http.o
2018-07-18 17:26:26 +02:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
mount-http-dir: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS)
.PHONY: clean
clean:
rm -f *.o mount-http-dir