Move linker flags from CFLAGS into LDFLAGS

This commit is contained in:
Jerome Charaoui 2019-01-23 00:16:27 -05:00 committed by Fufu Fang
parent 8ea46f896b
commit b2a84570a9
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
CC=gcc
CFLAGS+= -g -O2 -Wall -Wextra -lgumbo -lcurl -lfuse -lcrypto \
-D_FILE_OFFSET_BITS=64
CFLAGS+= -g -O2 -Wall -Wextra -D_FILE_OFFSET_BITS=64
LDFLAGS+= -lgumbo -lcurl -lfuse -lcrypto
OBJ = main.o network.o fuse_local.o link.o
PREFIX ?= /usr/local