2010-04-27 20:36:39 -06:00
|
|
|
# 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.
|
|
|
|
|
2010-08-18 08:08:49 -06:00
|
|
|
include ../../../src/Make.inc
|
2010-04-27 20:36:39 -06:00
|
|
|
|
|
|
|
all: index.html
|
|
|
|
|
2010-08-30 13:40:56 -06:00
|
|
|
include ../../../src/Make.common
|
2010-04-27 20:36:39 -06:00
|
|
|
|
|
|
|
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
|
|
|
|
./test.sh
|
|
|
|
rm -f final.6 final.bin
|
|
|
|
|
|
|
|
%.bin: %.$O
|
2010-08-30 13:40:56 -06:00
|
|
|
$(LD) -o $@ $<
|
|
|
|
%.$O:
|
|
|
|
$(GC) $*.go
|
2010-04-27 20:36:39 -06:00
|
|
|
|