From 6457d40887614d3b47be9453e0e5ec0460d2982c Mon Sep 17 00:00:00 2001 From: Ilya Haykinson Date: Wed, 19 Aug 2015 23:48:39 -0700 Subject: [PATCH] use standard go command to build; build the 1090es relay too --- .gitignore | 1 + Makefile | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index cda7a260..93a5248f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ dump978/uat2esnt dump978/uat2json dump978/uat2text gen_gdl90 +1090es_relay diff --git a/Makefile b/Makefile index c6ddb7ed..59cf9289 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,6 @@ all: - GOARCH=6 go-linux-arm build gen_gdl90.go traffic.go ry835ai.go + GOOS=linux GOARCH=arm GOARM=6 go build gen_gdl90.go traffic.go ry835ai.go + GOOS=linux GOARCH=arm GOARM=6 go build 1090es_relay.go clean: - rm -f gen_gdl90 \ No newline at end of file + rm -f gen_gdl90 + rm -f 1090es_relay \ No newline at end of file