diff --git a/.gitignore b/.gitignore index f4ae3d248d..f69157048a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ /openshift-sdn /sdn-cni-plugin +/network-controller +/loopback +/host-local + diff --git a/Makefile b/Makefile index edd8dbd60f..b9e7771b0d 100644 --- a/Makefile +++ b/Makefile @@ -21,11 +21,3 @@ include $(addprefix ./vendor/github.com/openshift/library-go/alpha-build-machine # It will generate target "image-$(1)" for builing the image an binding it as a prerequisite to target "images". $(call build-image,origin-node,./images/sdn/Dockerfile,.) $(call build-image,origin-sdn-controller,./images/sdn-controller/Dockerfile,.) - -clean: - $(RM) ./openshift-sdn - $(RM) ./sdn-cni-plugin - $(RM) ./network-controller -.PHONY: clean - -GO_TEST_PACKAGES :=./pkg/... ./cmd/...