cstool: make it compile with GCC on Linux

This commit is contained in:
Nguyen Anh Quynh 2016-10-10 23:52:29 +08:00
parent 9d8e212dd4
commit 8f60a5f212

View File

@ -12,9 +12,9 @@ LDFLAGS = -O3 -Wall -L.. -l$(LIBNAME)
cstool: cstool.o
ifeq ($(V),0)
$(call log,LINK,$@)
@${CC} $(LDFLAGS) $< -o $@
@${CC} $< $(LDFLAGS) -o $@
else
${CC} $(LDFLAGS) $< -o $@
${CC} $< $(LDFLAGS) -o $@
endif
clean: