From 25116543503ad56a28385afe689a1c6766d5f70f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Wed, 22 Mar 2023 20:45:48 +0100 Subject: [PATCH] Fix dependencies. --- .gitignore | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 20988ae..1d2465e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ *.o *.so *.import.scm -brmsaptool +bbstool *.link -brmsaptool-static +bbstool-static *.c diff --git a/Makefile b/Makefile index 5644836..ce32d78 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ imports: $(BBSTOOL-DEPS) bbstool: $(BBSTOOL-DEPS) $(CSC) -o $@ $< -bbstool-static: $(BBSTOOL-OBJS) +bbstool-static: $(BBSTOOL-SOURCES) $(CSC) -static -o $@ $(BBSTOOL-SOURCES) .PHONY: clean