Nicholas Nethercote ad2f86232e Added some reasonably thorough documentation on how to write skins. Also added
an example skin which is referred to in the documentation, and is designed to
be a template which can be copied.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1122
2002-09-27 10:29:51 +00:00

19 lines
471 B
Makefile

SUBDIRS = .
CFLAGS = $(WERROR) -DVG_LIBDIR="\"$(libdir)"\" \
-Winline -Wall -Wshadow -O -fomit-frame-pointer @PREFERRED_STACK_BOUNDARY@ -g
valdir = $(libdir)/valgrind
INCLUDES = -I$(top_srcdir)/include
val_PROGRAMS = vgskin_example.so
vgskin_example_so_SOURCES = ex_main.c
vgskin_example_so_LDFLAGS = -shared
##vgskin_example.so$(EXEEXT): $(vgskin_example_so_OBJECTS)
## $(CC) $(CFLAGS) $(LDFLAGS) -shared -o vgskin_example.so \
## $(vgskin_example_so_OBJECTS)