File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,16 @@ clean:
3232 rm -f janus
3333
3434install : release
35- install -Dm755 janus /usr/bin/janus
36- install -Dm644 data/janus.png /usr/share/pixmaps/janus.png
37- install -Dm644 data/janus.desktop /usr/share/applications/janus.desktop
38- $(foreach object, $(MOBJECTS ) , mkdir -p /usr/share/locale/ $( notdir $( basename $( object )) ) /LC_MESSAGES; install -Dm644 $( object ) /usr/share/locale/$(notdir $(basename $(object ) ) ) /LC_MESSAGES/janus.mo;)
35+ install -Dm755 janus $( DESTDIR ) /usr/bin/janus
36+ install -Dm644 data/janus.png $( DESTDIR ) /usr/share/pixmaps/janus.png
37+ install -Dm644 data/janus.desktop $( DESTDIR ) /usr/share/applications/janus.desktop
38+ $(foreach object, $(MOBJECTS ) , install -Dm644 $( object ) $( DESTDIR ) /usr/share/locale/$(notdir $(basename $(object ) ) ) /LC_MESSAGES/janus.mo;)
3939
4040uninstall :
4141 rm /usr/bin/janus
4242 rm /usr/share/pixmaps/janus.png
4343 rm /usr/share/applications/janus.desktop
44+ $(foreach object, $(MOBJECTS ) , rm /usr/share/locale/$(notdir $(basename $(object ) ) ) /LC_MESSAGES/janus.mo;)
4445
4546appdir : $(MOBJECTS )
4647 mkdir -p appdir
You can’t perform that action at this time.
0 commit comments