24 lines
354 B
Makefile
24 lines
354 B
Makefile
DNSNAME = $(shell hostname -f)
|
|
|
|
# check if DNSNAME is a FQDN
|
|
|
|
all:
|
|
# make push
|
|
|
|
push:
|
|
git pull
|
|
git add --all
|
|
-git commit -a -s
|
|
git push
|
|
|
|
# should update every go dependancy (?)
|
|
update:
|
|
git pull
|
|
go get -v -t -u ./...
|
|
|
|
init:
|
|
git add --all
|
|
-git commit -a -s
|
|
git remote add origin git@git.wit.com:jcarr/dnssec-socket.git
|
|
git push -u origin master
|