From b7e92ec1e0d1031b5ecb91f9653dcc507651d57f Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Tue, 22 Aug 2023 20:48:31 +0200 Subject: Makefile: Add targets to generate a Localizable.strings file --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8ddc10c..f25a5e8 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,14 @@ $(PRODUCT): $(OBJECTS) | build build: mkdir -p build + +.PHONY: genstrings +genstrings: Base.lproj/Localizable.strings + +Base.lproj/Localizable.strings: $(SOURCES) + genstrings -o Base.lproj $^ + + .PHONY: clean clean: rm $(OBJECTS) -- cgit v1.2.3