mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
-- Added top-level Makefile.
This commit is contained in:
27
Makefile
Normal file
27
Makefile
Normal 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
|
||||
Reference in New Issue
Block a user