You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
239 B
14 lines
239 B
# Install GUI translations
|
|
include ../libs.linux
|
|
|
|
TARGETS=cs de es fr hu it ko pl pt ru sl
|
|
|
|
install: $(TARGETS)
|
|
|
|
$(KICAD_INTERNAT):
|
|
mkdir -p $(KICAD_INTERNAT)
|
|
|
|
$(TARGETS): $(KICAD_INTERNAT)
|
|
cp -R $@ $(KICAD_INTERNAT)
|
|
|
|
.PHONY: $(TARGETS)
|