1
0
mirror of https://github.com/golang/go synced 2024-10-03 02:41:23 -06:00
go/doc/codelab/wiki/Makefile

25 lines
538 B
Makefile
Raw Normal View History

# Copyright 2010 The 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.
include ../../../src/Make.inc
all: index.html
include ../../../src/Make.common
CLEANFILES+=index.html srcextract.bin htmlify.bin
index.html: srcextract.bin htmlify.bin
awk '/^!/{system(substr($$0,2)); next} {print}' "$$@" < wiki.html > index.html
test: final.bin get.bin
bash ./test.sh
rm -f final.6 final.bin get.6 get.bin
%.bin: %.$O
$(LD) -o $@ $<
%.$O:
$(GC) $*.go