Makefile: fix warnings when linking with clang++
authorAntonio Ospite <ao2@ao2.it>
Thu, 22 Oct 2015 09:33:30 +0000 (11:33 +0200)
committerAntonio Ospite <ao2@ao2.it>
Thu, 22 Oct 2015 09:33:30 +0000 (11:33 +0200)
commit4eac1abc8f592c16e93a54f5b1d04c371d35f8da
tree5ad8e9c783882112d7935840326151137b33987f
parent2e62298e66cca8f5432b7086feac031e4a600e6b
Makefile: fix warnings when linking with clang++

Clang ignores some options during linkage and warns about it:

  clang: warning: argument unused during compilation: '-ansi'
  clang: warning: argument unused during compilation: '-Wp,-D_FORTIFY_SOURCE=2'

Add -Qunused-arguments to LDFLAGS to suppress the warnings.
Makefile