We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 881de11 commit 3838053Copy full SHA for 3838053
1 file changed
cups/Makefile
@@ -350,12 +350,20 @@ strings:
350
stringsutil -f strings/$$file -c merge base.strings; \
351
done
352
353
+.PHONY: stringsh
354
stringsh:
355
echo Generating localization headers...
356
for file in $(STRINGS); do \
357
stringsutil -f strings/$$file export strings/`basename $$file .strings`_strings.h; \
358
359
360
+.PHONY: stringscheck
361
+stringscheck:
362
+ echo Checking localization headers...
363
+ for file in $(STRINGS); do \
364
+ stringsutil -f base.strings report strings/$$file; \
365
+ done
366
+
367
368
#
369
# libcups.so.3 / libcups3.so.3
0 commit comments