Files
remind/Makefile
1998-01-17 04:51:21 +00:00

28 lines
551 B
Makefile

# 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