mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-11-23 19:59:19 +01:00
15 lines
234 B
Makefile
15 lines
234 B
Makefile
|
|
VERSION = $(shell sed -n '/^VERSION/{s/^.*=[\t ]*//p;Q}' ../Makefile)
|
|
|
|
all: zip
|
|
|
|
clean:
|
|
rm -f *miss.lang *.zip lang?*.pot
|
|
|
|
zip: clean
|
|
echo $(VERSION)
|
|
./msg_merge.sh lang.pot
|
|
./msg_miss.sh
|
|
zip lang$(VERSION).zip *.lang lang.pot
|
|
|