Fix Makefiles for go, rust, zig

This commit is contained in:
Peter 2023-08-24 09:01:50 +02:00
parent b63448bcb9
commit 788333a4b2
Signed by: pludi
GPG Key ID: FB1A00FEE77E2C36
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ OUT = sleeptest
all: $(OUT)
$(OUT): $(SRC)
$(GO) -ldflags="-s -w" -o $(OUT) $(SRC)
$(GO) build -ldflags "-s -w" -o $(OUT) $(SRC)
clean:
rm -f $(OUT)

View File

@ -7,7 +7,7 @@ OUT = sleeptest
all: $(OUT)
$(OUT): $(SRC)
$(RUSTC) -C symbols -o $(OUT) $(SRC)
$(RUSTC) -C strip=symbols -o $(OUT) $(SRC)
clean:
rm -f $(OUT)

View File

@ -7,7 +7,7 @@ OUT = sleeptest
all: $(OUT)
$(OUT): $(SRC)
$(ZIG) -Wall -s -o $(OUT) $(SRC)
$(ZIG) cc -Wall -s -o $(OUT) $(SRC)
clean:
rm -f $(OUT)