Skip to content

Commit

Permalink
cstool: make it compile with GCC on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
aquynh committed Oct 10, 2016
1 parent ef2c5f2 commit 15b9e7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cstool/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 15b9e7e

Please sign in to comment.