From: Nicholas Nethercote Date: Sat, 14 Feb 2004 16:46:17 +0000 (+0000) Subject: Whoops, meant to add this with the rest of Massif. X-Git-Tag: svn/VALGRIND_2_1_1~62 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=614adcef8b495b9a37a7c827d11fa5ee44615f1f;p=thirdparty%2Fvalgrind.git Whoops, meant to add this with the rest of Massif. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2246 --- diff --git a/massif/hp2ps/Makefile.am b/massif/hp2ps/Makefile.am new file mode 100644 index 0000000000..5d91411a1d --- /dev/null +++ b/massif/hp2ps/Makefile.am @@ -0,0 +1,45 @@ + +valdir = $(libdir)/valgrind +inplacedir = $(top_srcdir)/.in_place + +AM_CPPFLAGS = $(add_includes) +AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -fno-omit-frame-pointer \ + @PREFERRED_STACK_BOUNDARY@ -g +AM_CCASFLAGS = $(add_includes) + +val_PROGRAMS = hp2ps + +EXTRA_DIST = \ + CHANGES \ + INSTALL \ + LICENSE \ + README \ + Makefile.old \ + hp2ps.1 + +hp2ps_SOURCES = \ + AuxFile.c \ + Axes.c \ + AreaBelow.c \ + Curves.c \ + Deviation.c \ + Dimensions.c \ + Error.c \ + HpFile.c \ + Key.c \ + Main.c \ + Marks.c \ + TopTwenty.c \ + TraceElement.c \ + PsFile.c \ + Reorder.c \ + Scale.c \ + Shade.c \ + Utilities.c +hp2ps_LDFLAGS = -lm + +all-local: + mkdir -p $(inplacedir) + -rm -f $(addprefix $(inplacedir)/,$(val_PROGRAMS)) + ln -f -s $(addprefix ../$(subdir)/,$(val_PROGRAMS)) $(inplacedir) +