-- Added top-level Makefile.

This commit is contained in:
dfs
1998-01-17 04:51:21 +00:00
parent 87cfe53b52
commit 22c169fea8

27
Makefile Normal file
View File

@@ -0,0 +1,27 @@
# Top-level Makefile
all:
@if test ! -f src/Makefile ; then \
./configure ; \
fi
@echo ""
@echo "*******************"
@echo "* *"
@echo "* Building REMIND *"
@echo "* *"
@echo "*******************"
@echo ""
@cd src; $(MAKE) all
install: all
@echo ""
@echo "*********************"
@echo "* *"
@echo "* Installing REMIND *"
@echo "* *"
@echo "*********************"
@echo ""
cd src; $(MAKE) install
clean:
find . -name '*~' -exec rm {} \;
cd src; $(MAKE) clean