| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- # Copyright 2023 The libz-go Authors. All rights reserved.
- # Use of this source code is governed by a BSD-style
- # license that can be found in the LICENSE file.
- .PHONY: all clean dev download edit editor generate work test windows windows-dev
- DIR = /tmp/libz
- TAR = zlib-1.3.1.tar.gz
- URL = https://zlib.net/$(TAR)
- all: editor
- golint 2>&1
- staticcheck 2>&1
- build_all_targets:
- ./build_all_targets.sh
- echo done
- clean:
- rm -f log-* cpu.test mem.test *.out go.work*
- go clean
- clean-dev:
- rm -rf include/linux/amd64/ include/windows/*
- rm -f internal/autogen/windows*.mod
- rm -f ccgo_linux_amd64.go internal/example/ccgo_linux_amd64.go internal/minigzip/ccgo_linux_amd64.go
- rm -f ccgo_windows.go internal/example/ccgo_windows.go internal/minigzip/ccgo_windows.go
- edit:
- @if [ -f "Session.vim" ]; then novim -S & else novim -p Makefile go.mod builder.json all_test.go generator.go & fi
- editor:
- gofmt -l -s -w .
- go test -c -o /dev/null
- go install -v ./...
- go build -o /dev/null generator*.go
- download:
- @if [ ! -f $(TAR) ]; then wget $(URL) ; fi
- generate: download
- mkdir -p $(DIR) || true
- rm -rf $(DIR)/*
- GO_GENERATE_DIR=$(DIR) go run generator*.go
- go build -v ./...
- go test -v -count=1 ./...
- git status
- dev: download
- mkdir -p $(DIR) || true
- rm -rf $(DIR)/*
- echo -n > /tmp/ccgo.log
- GO_GENERATE_DIR=$(DIR) GO_GENERATE_DEV=1 go run -tags=ccgo.dmesg,ccgo.assert generator*.go
- go build -v ./...
- go test -v -count=1 ./...
- git status
- test:
- go test -v -timeout 24h -count=1
- windows: download
- mkdir -p $(DIR) || true
- rm -rf $(DIR)/*
- GO_GENERATE_WIN=1 GO_GENERATE_DIR=$(DIR) go run generator*.go
- GOOS=windows GOARCH=amd64 go build -v ./...
- GOOS=windows GOARCH=amd64 go test -v -c -o /dev/null
- GOOS=windows GOARCH=arm64 go build -v ./...
- GOOS=windows GOARCH=arm64 go test -v -c -o /dev/null
- git status
- windows_386: download
- mkdir -p $(DIR) || true
- rm -rf $(DIR)/*
- GO_GENERATE_WIN32=1 GO_GENERATE_DIR=$(DIR) go run generator*.go
- GOOS=windows GOARCH=386 go build -v ./...
- GOOS=windows GOARCH=386 go test -v -c -o /dev/null
- git status
- windows-dev: download
- mkdir -p $(DIR) || true
- rm -rf $(DIR)/*
- echo -n > /tmp/ccgo.log
- GO_GENERATE_WIN=1 GO_GENERATE_DIR=$(DIR) GO_GENERATE_DEV=1 go run -tags=ccgo.dmesg,ccgo.assert generator*.go
- GOOS=windows GOARCH=amd64 go build -v ./...
- GOOS=windows GOARCH=amd64 go test -v -c -o /dev/null
- GOOS=windows GOARCH=arm64 go build -v ./...
- GOOS=windows GOARCH=arm64 go test -v -c -o /dev/null
- git status
- windows_386-dev: download
- mkdir -p $(DIR) || true
- rm -rf $(DIR)/*
- echo -n > /tmp/ccgo.log
- GO_GENERATE_WIN32=1 GO_GENERATE_DIR=$(DIR) GO_GENERATE_DEV=1 go run -tags=ccgo.dmesg,ccgo.assert generator*.go
- GOOS=windows GOARCH=386 go build -v ./...
- GOOS=windows GOARCH=386 go test -v -c -o /dev/null
- git status
- work:
- rm -f go.work*
- go work init
- go work use .
- go work use ../ccgo/v4
- go work use ../ccgo/v3
- go work use ../cc/v4
- go work use ../libc
|