modif makefile

This commit is contained in:
Erreur32 2017-07-18 23:49:02 +02:00
parent 701ca2b5b0
commit 843819c22c
2 changed files with 23 additions and 22 deletions

View File

@ -3,30 +3,30 @@ CONFIGS=motds32.conf
usage: usage:
@echo "This makefile allows you to:" @echo "This makefile allows you to:"
@echo " o install MOTDstat" @echo " o install MOTDstat"
@echo " o unintall MOTDstat" @echo " o unintall MOTDstat"
@echo @echo
@echo Examples: @echo Examples:
@echo " make install" @echo " make install"
@echo " make uninstall" @echo " make uninstall"
install: install:
for prog in $(PROGRAMS); do \ for prog in $(PROGRAMS); do \
install -m 0755 bin/$$prog /usr/bin; \ install -m 0755 bin/$$prog /usr/bin; \
done done
if test ! -d /etc/motds32; then mkdir -p /etc/motds32; fi if test ! -d /etc/motds32; then mkdir -p /etc/motds32; fi
for config in $(CONFIGS); do \ for config in $(CONFIGS); do \
if test ! -e /etc/motds32/$$config; then install -m 644 ./etc/motds32/$$config /etc/motds32; fi \ if test ! -e /etc/motds32/$$config; then install -m 644 ./etc/motds32/$$config /etc/motds32; fi \
done done
/usr/bin/motds32 -g /usr/bin/motds32 -g
uninstall: uninstall:
for prog in $(PROGRAMS); do \ for prog in $(PROGRAMS); do \
rm -f /usr/bin/$$prog; \ rm -f /usr/bin/$$prog; \
done done
rm -rf /etc/motds32/ /etc/motd.full rm -rf /etc/motds32/ /etc/motd.full
mv -f /etc/motd.orig /etc/motd mv -f /etc/motd.orig /etc/motd

View File

@ -22,6 +22,7 @@
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with MOTDs32. If not, see <http://www.gnu.org/licenses/>. # along with MOTDs32. If not, see <http://www.gnu.org/licenses/>.
mkdir /etc/motds32/
/etc/motds32/Stats32 > /etc/motds32/Stats32.txt /etc/motds32/Stats32 > /etc/motds32/Stats32.txt
# Path to the configuration file # Path to the configuration file