forked from GeeXboX/enna
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
34 lines (25 loc) · 804 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
## Process this file with automake to produce Makefile.in
## Created by Anjuta
SUBDIRS = po src data
EXTRA_DIST = config.rpath enna.cfg.sample MAINTAINERS $(ennadoc_DATA)
# Copy all the spec files. Of cource, only one is actually used.
dist-hook:
for specfile in *.spec; do \
if test -f $$specfile; then \
cp -p $$specfile $(distdir); \
fi \
done
update-pot:
$(MAKE) -C po $(AM_MAKEFLAGS) @[email protected]
update-po:
$(MAKE) -C po $(AM_MAKEFLAGS) update-po
update-gmo:
$(MAKE) -C po $(AM_MAKEFLAGS) update-gmo
force-update-gmo:
touch po/*.po
$(MAKE) -C po $(AM_MAKEFLAGS) update-gmo
force-update-gmo-%:
touch po/`echo $@ | sed s/force-update-gmo-//`.po
$(MAKE) -C po $(AM_MAKEFLAGS) update-gmo
ACLOCAL_AMFLAGS = -I m4
.PHONY: update-pot update-po update-gmo force-update-gmo