Removed non-existent file in the makefile, preventing build

This commit is contained in:
Justin Suess 2018-07-23 14:06:35 -04:00
parent e11eed9937
commit 72feefac2c
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
CC=gcc
CFLAGS= -O2 -Wall -Wextra -lgumbo -lcurl -lfuse -D_FILE_OFFSET_BITS=64 \
-DHTTPDIRFS_INFO
OBJ = main.o network.o network_multi.o
OBJ = main.o network.o
%.o: %.c
$(CC) -c -o $@ $< $(CFLAGS)