diff options
Diffstat (limited to 'internal/stupidgcm/Makefile')
-rw-r--r-- | internal/stupidgcm/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/internal/stupidgcm/Makefile b/internal/stupidgcm/Makefile index 143819d..d8f7d2e 100644 --- a/internal/stupidgcm/Makefile +++ b/internal/stupidgcm/Makefile @@ -3,11 +3,15 @@ test: gcc # All three ways of building this must work go build go build -tags without_openssl - CGO_ENABLED=0 go build -tags without_openssl + go build -tags without_aegis + go build -tags without_openssl,without_aegis + CGO_ENABLED=0 go build -tags without_openssl,without_aegis # Likewise, all three ways of testing this must work go test -v go test -v -tags without_openssl - CGO_ENABLED=0 go test -v -tags without_openssl + go test -v -tags without_aegis + go test -v -tags without_openssl,without_aegis + CGO_ENABLED=0 go test -v -tags without_openssl,without_aegis .PHONY: gcc gcc: |