Rename OBJ to COBJS

This commit is contained in:
Jerome Charaoui 2019-01-24 21:19:58 -05:00 committed by Fufu Fang
parent 724fac83de
commit 29acb2d804
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ VERSION=1.0
CFLAGS+= -g -O2 -Wall -Wextra -D_FILE_OFFSET_BITS=64 -DVERSION=\"$(VERSION)\"
LDFLAGS+= -lgumbo -lcurl -lfuse -lcrypto
OBJ = main.o network.o fuse_local.o link.o
COBJS = main.o network.o fuse_local.o link.o
prefix ?= /usr/local
@ -11,7 +11,7 @@ all: httpdirfs
%.o: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -c -o $@ $<
httpdirfs: $(OBJ)
httpdirfs: $(COBJS)
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $^
install: