Fix Makefile indentation

This commit is contained in:
Matthieu Grieger 2014-12-13 16:24:10 -08:00
parent 2be859a9e0
commit e9003c7950

View file

@ -1,20 +1,20 @@
all: mumbledj
mumbledj: main.go commands.go parseconfig.go strings.go
go build .
go build .
clean:
rm -f mumbledj
rm -f mumbledj
install:
sudo cp -f mumbledj /usr/local/bin/mumbledj
mkdir -p ~/.mumbledj/config
mkdir -p ~/.mumbledj/songs
if [ -a ~/.mumbledj/config/config.toml ]; then mv ~/.mumbledj/config/config.toml ~/.mumbledj/config/config_backup.toml; fi;
cp -u config.toml ~/.mumbledj/config/config.toml
sudo cp -f mumbledj /usr/local/bin/mumbledj
mkdir -p ~/.mumbledj/config
mkdir -p ~/.mumbledj/songs
if [ -a ~/.mumbledj/config/config.toml ]; then mv ~/.mumbledj/config/config.toml ~/.mumbledj/config/config_backup.toml; fi;
cp -u config.toml ~/.mumbledj/config/config.toml
install_deps:
go get -u github.com/layeh/gumble/gumble
go get -u github.com/layeh/gumble/gumbleutil
go get -u github.com/layeh/gumble/gumble_ffmpeg
go get -u github.com/BurntSushi/toml
go get -u github.com/layeh/gumble/gumble
go get -u github.com/layeh/gumble/gumbleutil
go get -u github.com/layeh/gumble/gumble_ffmpeg
go get -u github.com/BurntSushi/toml