From 466a2cab8231227e6b6802a8084fe2926f674cfe Mon Sep 17 00:00:00 2001 From: Vladislav Yarmak Date: Wed, 22 Mar 2023 20:00:50 +0200 Subject: [PATCH] Makefile: consider go.mod and go.sum a source depencency --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index adf4900..ab4584a 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ NDK_CC_ARM64 = $(abspath ../../ndk-toolchain-arm64/bin/aarch64-linux-android21-c GO := go -src = $(wildcard *.go) +src = $(wildcard *.go) go.mod go.sum native: bin-native all: bin-linux-amd64 bin-linux-386 bin-linux-arm \