X-Git-Url: http://pileus.org/git/?p=grits;a=blobdiff_plain;f=examples%2Fvolume%2Fmkfile;fp=examples%2Fvolume%2Fmkfile;h=d89b78bb49b84c14037d8ddf1def4c0aaeeac0e2;hp=0000000000000000000000000000000000000000;hb=8f40fd04fdb9316e53cf0b765003cffba04af481;hpb=dccc3b445b3c67322eb4f071df46bff02fac89ed diff --git a/examples/volume/mkfile b/examples/volume/mkfile new file mode 100644 index 0000000..d89b78b --- /dev/null +++ b/examples/volume/mkfile @@ -0,0 +1,25 @@ +MKSHELL=/usr/lib/plan9/bin/rc + +PKG_CONFIG_PATH=../../src/ +LD_LIBRARY_PATH=../../src/.libs/ +PKGS=grits + +CFLAGS=-Wall -Wno-unused -Werror -g -p -pg --std=gnu99 -I../ +PROGS=volume +default:V: volume-run + +volume_libs=-lrsl +volume: volume.o ../tester.o + +memcheck: all + G_SLICE=always-malloc \ + G_DEBUG=gc-friendly,resident-modules \ + valgrind '--track-origins=yes' \ + '--leak-check=full' \ + '--leak-resolution=high' \ + '--num-callers=50' \ + '--suppressions=../../src/gtk.suppression' \ + ./volume \ + >[2] valgrind.out + +<$HOME/lib/mkcommon