You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
454 B
28 lines
454 B
GOC=go build |
|
GOFLAGS=-a -ldflags '-s' |
|
CGOR=CGO_ENABLED=0 |
|
|
|
|
|
all: stat reclist |
|
|
|
run: |
|
go run \ |
|
nethack-score.go |
|
|
|
stat: |
|
mkdir -p bin/ |
|
$(CGOR) $(GOC) $(GOFLAGS) -o bin/nethack-score nethack-score.go |
|
|
|
reclist: |
|
mkdir -p bin/ |
|
gcc -static deps/reclist.c -o bin/reclist |
|
|
|
test: |
|
bin/nethack-score -recordlocation deps/record -reclistlocation bin/reclist |
|
|
|
dependencies: |
|
go get github.com/gorilla/mux |
|
go get github.com/unixvoid/glogger |
|
|
|
clean: |
|
rm -rf bin/
|
|
|