1 2 3 4 5 6 7 8 9 10 11
MO_FILES = $(patsubst %.po,%.mo,$(wildcard test_cases/*.po)) %.mo: %.po msgfmt -o $@ $< all: test_cases test_cases: $(MO_FILES) clean: rm -f test_cases/*.mo