#!/bin/sh

PRO_FILE=../slag.pro

all: update release

update:
	lupdate -verbose $(PRO_FILE)
release:
	lrelease -verbose $(PRO_FILE)
