# file: Makefile		G. Moody		19 January 2009
#				Last revised:		3 February 2009
#
# To compile the software in this directory, install the WFDB Software
# Package (see http://physionet.org/physiotools/wfdb.shtml), then return
# to this directory and run "make".  See 00README for notes on using this
# software.

OBJS = loghtml logtxt txtlog

all:
	make $(OBJS)

clean:
	rm -f $(OBJS) *~

loghtml:	loghtml.c mimic2.h
	gcc -o loghtml -O loghtml.c -lwfdb

logtxt:		logtxt.c mimic2.h
	gcc -o logtxt -O logtxt.c -lwfdb

txtlog:	       txtlog.c mimic2.h
	gcc -o txtlog -O txtlog.c -lwfdb
