aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2018-04-20 16:32:40 +0200
committerAyke van Laethem <[email protected]>2018-04-20 16:32:40 +0200
commit45e7376f391cd894214d578724dcfd22776cf781 (patch)
tree093619cbaa105e9ff83e75fb3cde0e2c07dc2c04 /Makefile
parentff9e7a8b7789ade56367e741730c89192c8a999a (diff)
downloadtinygo-45e7376f391cd894214d578724dcfd22776cf781.tar.gz
tinygo-45e7376f391cd894214d578724dcfd22776cf781.zip
Implement print() and println() in Go
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b93e1719b..dcf58112a 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ build/tgo: *.go
@mkdir -p build
@go build -o build/tgo -i .
-build/hello.o: build/tgo src/examples/hello/*.go
+build/hello.o: build/tgo src/examples/hello/*.go src/runtime/*.go
@./build/tgo -printir -o build/hello.o examples/hello
build/runtime.o: src/runtime/*.c src/runtime/*.h