]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Whoops, meant to add this with the rest of Massif.
authorNicholas Nethercote <n.nethercote@gmail.com>
Sat, 14 Feb 2004 16:46:17 +0000 (16:46 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Sat, 14 Feb 2004 16:46:17 +0000 (16:46 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2246

massif/hp2ps/Makefile.am [new file with mode: 0644]

diff --git a/massif/hp2ps/Makefile.am b/massif/hp2ps/Makefile.am
new file mode 100644 (file)
index 0000000..5d91411
--- /dev/null
@@ -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)
+