Deleted Added
full compact
Make-in (102729) Make-in (107492)
1# Makefile for program source directory in GNU NLS utilities package.
2# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
3#
4# This file file be copied and used freely without restrictions. It can
5# be used in projects which are not available under the GNU Public License
6# but which still want to provide support for the GNU gettext functionality.
7# Please note that the actual code is *not* freely available.
8

--- 56 unchanged lines hidden (view full) ---

65 $(MAKE) $(PACKAGE).pot
66 $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
67
68.po.mo:
69 $(MSGFMT) -o $@ $<
70
71.po.gmo:
72 file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
1# Makefile for program source directory in GNU NLS utilities package.
2# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
3#
4# This file file be copied and used freely without restrictions. It can
5# be used in projects which are not available under the GNU Public License
6# but which still want to provide support for the GNU gettext functionality.
7# Please note that the actual code is *not* freely available.
8

--- 56 unchanged lines hidden (view full) ---

65 $(MAKE) $(PACKAGE).pot
66 $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
67
68.po.mo:
69 $(MSGFMT) -o $@ $<
70
71.po.gmo:
72 file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
73 && rm -f $$file && $(GMSGFMT) -o $$file $<
73 && test -w $$file \
74 && (rm -f $$file && $(GMSGFMT) -o $$file $< ) \
75 || echo "$$file is not writable"
74
75.po.cat:
76 sed -f ../intl/po2msg.sed < $< > $*.msg \
77 && rm -f $@ && $(GENCAT) $@ $*.msg
78
79
80all: all-@USE_NLS@
81

--- 170 unchanged lines hidden ---
76
77.po.cat:
78 sed -f ../intl/po2msg.sed < $< > $*.msg \
79 && rm -f $@ && $(GENCAT) $@ $*.msg
80
81
82all: all-@USE_NLS@
83

--- 170 unchanged lines hidden ---