#---------------------------------------------------------------------
# This file is a Makefile (or its template) for the examples directory
# of Algae. It is run by the Makefile in the parent directory.
#---------------------------------------------------------------------
srcdir = @srcdir@
VPATH = @srcdir@
# ============================ Targets ============================
all:
.PHONY: all
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