2010-04-28 12:36:39 +10: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 10:08:49 -04:00
|
|
|
include ../../../src/Make.inc
|
2010-04-28 12:36:39 +10:00
|
|
|
|
|
|
|
|
all: index.html
|
|
|
|
|
|
2010-08-30 15:40:56 -04:00
|
|
|
include ../../../src/Make.common
|
2010-04-28 12:36:39 +10:00
|
|
|
|
2011-03-27 23:39:42 -04:00
|
|
|
CLEANFILES+=index.html srcextract.bin htmlify.bin get.bin
|
2010-04-28 12:36:39 +10:00
|
|
|
|
|
|
|
|
index.html: srcextract.bin htmlify.bin
|
2011-03-07 15:48:39 +11:00
|
|
|
PATH=.:$$PATH awk '/^!/{system(substr($$0,2)); next} {print}' < wiki.html | tr -d '\r' > index.html
|
2010-04-28 12:36:39 +10:00
|
|
|
|
2011-01-27 23:19:37 +10:00
|
|
|
test: get.bin
|
2011-01-26 13:02:09 -05:00
|
|
|
bash ./test.sh
|
2011-01-27 23:19:37 +10:00
|
|
|
rm -f get.6 get.bin
|
2010-04-28 12:36:39 +10:00
|
|
|
|
|
|
|
|
%.bin: %.$O
|
2010-08-30 15:40:56 -04:00
|
|
|
$(LD) -o $@ $<
|
2011-01-28 09:42:51 -05:00
|
|
|
|
|
|
|
|
%.$O: %.go
|
2010-08-30 15:40:56 -04:00
|
|
|
$(GC) $*.go
|
2010-04-28 12:36:39 +10:00
|
|
|
|