repo.or.cz
/
cinelerra_cv
/
mob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r134: Heroine Virtual's release 1.1.8
[cinelerra_cv/mob.git]
/
hvirtual
/
po
/
Makefile
blob
0e09acc3d49eb1313cc42377126cd0fc6a87f023
1
include
Makevars
2
3
4
OBJS
:=
\
5
de.mo \
6
sl.mo
7
8
9
all
: $(
OBJS
)
10
11
12
install
:
13
@for i in
$(
OBJS
) ;
\
14
do \
15
BASENAME
=
`echo $$i | sed 's/\.mo//'`
;
\
16
DST
=
cinelerra.mo
;
\
17
DIR
=/
usr
/
share
/
locale
/$
$BASENAME
/
LC_MESSAGES
;
\
18
echo mkdir
-
p
$
$DIR
;
\
19
mkdir
-
p
$
$DIR
;
\
20
echo cp
$
$i
$
$DIR
/$
$DST
;
\
21
cp
$
$i
$
$DIR
/$
$DST
;
\
22
done
23
24
clean
:
25
rm
-
f
$(
OBJS
)
26
27
$(
OBJS
):
28
msgfmt
-
c
-
o
$
@
$(
subst
.mo
,
.po
,$
@
)
29
30
de.mo
:
de.po
31
sl.mo
:
sl.po
32
33