mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 06:48:47 +02:00
28 lines
551 B
Makefile
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
|