17 lines
205 B
Makefile
17 lines
205 B
Makefile
|
# do this
|
||
|
|
||
|
all:
|
||
|
go build
|
||
|
./signup
|
||
|
|
||
|
# this is the raw socket server. it will
|
||
|
# show all socket connects recieved
|
||
|
raw-socket:
|
||
|
go run server.go
|
||
|
|
||
|
push:
|
||
|
git pull
|
||
|
git add --all
|
||
|
-git commit -a -s
|
||
|
git push
|