...

Text file src/github.com/chai2010/gettext-go/testdata/Makefile

Documentation: github.com/chai2010/gettext-go/testdata

     1# Copyright 2013 ChaiShushan <chaishushan{AT}gmail.com>. All rights reserved.
     2# Use of this source code is governed by a BSD-style
     3# license that can be found in the LICENSE file.
     4
     5PO_FILES = $(wildcard *.po)
     6MO_FILES = $(patsubst %.po,%.mo,$(PO_FILES))
     7
     8default: $(MO_FILES)
     9
    10clean:
    11	rm *.mo
    12
    13%.mo: %.po
    14	msgfmt -o $@ $<

View as plain text