# file: Makefile G. Moody 30 July 2010
#
# To build and install the software in this directory, install the 'wfdbmap'
# package first, then return to this directory and type 'make'.
# The software will be installed in BINDIR. Make sure BINDIR is in your
# PATH and that you have write permission there.
BINDIR=/usr/local/bin
install: findahe ahelabel
mv findahe ahelabel $(BINDIR)
cp -p printahe ahemap $(BINDIR)
findahe: findahe.c
gcc -o findahe -O findahe.c -lwfdb
ahelabel: ahelabel.c
gcc -o ahelabel -O ahelabel.c -lwfdb
clean:
rm -f findahe ahelabel *~