The Go Programming Language

Text file src/Make.common

     1	# Copyright 2009 The Go Authors. All rights reserved.
     2	# Use of this source code is governed by a BSD-style
     3	# license that can be found in the LICENSE file.
     4	
     5	clean:
     6		rm -rf *.o *.a *.[$(OS)] [$(OS)].out $(CLEANFILES)
     7	
     8	install.clean: install
     9		rm -rf *.o *.a *.[$(OS)] [$(OS)].out $(CLEANFILES) || true
    10	
    11	test.clean: test
    12		rm -rf *.o *.a *.[$(OS)] [$(OS)].out $(CLEANFILES) || true
    13	
    14	testshort.clean: testshort
    15		rm -rf *.o *.a *.[$(OS)] [$(OS)].out $(CLEANFILES) || true
    16	
    17	%.make:
    18		$(MAKE) -C $* install
    19	
    20	.PHONY: all clean nuke install coverage test bench testpackage-clean\ 
    21		importpath dir
    22	

release.r60.3. Except as noted, this content is licensed under a Creative Commons Attribution 3.0 License.