diff options
author | Ron Evans <[email protected]> | 2018-12-11 11:38:23 +0100 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2018-12-11 12:55:03 +0100 |
commit | 8734732d0c125101a2d5b317b0627ef2a4ba7d43 (patch) | |
tree | 5fc15a2b87c4ef3baed0b54d4802137625059247 /Makefile | |
parent | 6cacafb8dc0351c2204cefedcd83864df6591d3d (diff) | |
download | tinygo-8734732d0c125101a2d5b317b0627ef2a4ba7d43.tar.gz tinygo-8734732d0c125101a2d5b317b0627ef2a4ba7d43.zip |
build: Makefile needs to look at changes in all needed sub-directories to decide if rebuild is required
Signed-off-by: Ron Evans <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ gen-device-stm32: # Build the Go compiler. -build/tgo: *.go compiler/*.go ir/*.go +build/tgo: *.go compiler/*.go interp/*.go loader/*.go ir/*.go @mkdir -p build go build -o build/tgo -i . |