1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Index: quickplot-0.9.11/Makefile.am
===================================================================
--- quickplot-0.9.11.orig/Makefile.am 2011-12-30 07:13:30.000000000 +0100
+++ quickplot-0.9.11/Makefile.am 2011-12-31 18:10:22.307238829 +0100
@@ -218,6 +218,7 @@
quickplot_SHORTNAME = qp
quickplot_CFLAGS = $(gtk_3_CFLAGS) $(sndfile_CFLAGS)
quickplot_LDADD = libquickplot.la $(gtk_3_LIBS) $(sndfile_LIBS)
+quickplot_LDFLAGS = -Wall
#if USE_READLINE
quickplot_LDADD += $(readline_LIBS)
#endif
@@ -408,7 +409,7 @@
sha256: $(gzfile).sha256 $(bz2file).sha256 $(xzfile).sha256
sha512: $(gzfile).sha512 $(bz2file).sha512 $(xzfile).sha512
-.gz.gz.md5:
+.gz.gz.md5:
md5sum $< > $@
.gz.gz.sha1:
sha1sum $< > $@
@@ -417,7 +418,7 @@
.gz.gz.sha512:
sha512sum $< > $@
-.bz2.bz2.md5:
+.bz2.bz2.md5:
md5sum $< > $@
.bz2.bz2.sha1:
sha1sum $< > $@
|