Added LICENSE, extended README and Makefile

This commit is contained in:
2014-01-09 06:46:38 +01:00
parent dc103a0dd9
commit 25eb97b311
3 changed files with 45 additions and 7 deletions

View File

@@ -1,12 +1,18 @@
FILES=shellchooser.sh bashfiles/profile bashfiles/bashrc cshfiles/cshrc \
ashfiles/profile
SHELLS=/bin/ash /bin/bash /bin/csh /bin/kalle
shellchooser: $(FILES)
$(info Use 'make install' to install shellchooser on your system)
$(info Use 'make uninstall' to uninstall shellchooser from your system)
$(info Please see README for more information on shellchooser)
$(info Use 'make install' to install shellchooser on your system.)
$(info Use 'make uninstall' to uninstall shellchooser from your system.)
$(info Please see README for more information on shellchooser.)
$(info Your system should have bash, ash and csh installed.)
$(info Of these shells your system have the following shells installed:)
@which ash
@which bash
@which csh
install: $(FILES)
install: $(FILES) $(SHELLS)
chmod 755 shellchooser.sh
cp shellchooser.sh /bin/shellchooser.sh
mkdir /etc/shellchooser