tools/syz-make: rename from syz-env

syz-env will be a good, short name for the planned
docker-ized build environment. So rename syz-env to syz-make.
Maybe not the best name, but it's not visible basically anywhere.
This commit is contained in:
Dmitry Vyukov 2020-05-15 17:52:15 +02:00
parent 910f427fd9
commit 4836c13c61
2 changed files with 3 additions and 2 deletions
Makefile
tools/syz-make

@ -28,7 +28,7 @@ ENV := $(subst \n,$(newline),$(shell CI=$(CI)\
SOURCEDIR=$(SOURCEDIR) HOSTOS=$(HOSTOS) HOSTARCH=$(HOSTARCH) \
TARGETOS=$(TARGETOS) TARGETARCH=$(TARGETARCH) TARGETVMARCH=$(TARGETVMARCH) \
SYZ_CLANG=$(SYZ_CLANG) \
go run tools/syz-env/env.go))
go run tools/syz-make/make.go))
# Uncomment in case of emergency.
# $(info $(ENV))
$(eval $(ENV))
@ -36,7 +36,7 @@ ifneq ("$(SYZERROR)", "")
$(error $(SYZERROR))
endif
ifeq ("$(NCORES)", "")
$(error syz-env failed)
$(error syz-make failed)
endif
MAKEFLAGS += " -j$(NCORES) "
export MAKEFLAGS

@ -1,6 +1,7 @@
// Copyright 2018 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
// syz-make provides information required to build native code for the Makefile.
package main
import (