#---------------------------------------------------------------------
# This file is a Makefile (or its template) for the timing directory
# of Algae.  It is run by the Makefile in the parent directory.
#---------------------------------------------------------------------

srcdir = @srcdir@
VPATH = @srcdir@

# ============================ Targets ============================

timing:
	../src/algae -S ../tools/*.A timing.A

install:
.PHONY:	install

uninstall:
.PHONY:	uninstall

# ========================== Distribution =========================

DISTFILES = Makefile.in *.A
BINDISTFILES = Makefile *.A

dist:
	for file in $(DISTFILES); do \
	  ln $$file $(distdir) > /dev/null 2>&1 || cp $$file $(distdir); \
	done
.PHONY:	dist

binaries:
	for file in $(BINDISTFILES); do \
	  ln $$file $(distdir) > /dev/null 2>&1 || cp $$file $(distdir); \
	done
.PHONY:	binaries

# ========================== Cleaning Up ==========================

.PHONY:	clean mostlyclean distclean maintainer-clean

clean mostlyclean distclean maintainer-clean::

distclean maintainer-clean::
	rm -f Makefile


syntax highlighted by Code2HTML, v. 0.9.1