mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-05 11:04:42 +03:00
Changes in the setup to install new icons
This commit is contained in:
parent
9bd86254e3
commit
bb2110493c
@ -23,7 +23,7 @@ suppbindir = $(libdir)/bin
|
|||||||
tidir = $(libdir)/term
|
tidir = $(libdir)/term
|
||||||
extfsdir = $(libdir)/extfs
|
extfsdir = $(libdir)/extfs
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
icondir = $(datadir)/icons/mc
|
icondir = $(datadir)/pixmaps/mc
|
||||||
localedir = $(datadir)/locale
|
localedir = $(datadir)/locale
|
||||||
basemandir = @mandir@
|
basemandir = @mandir@
|
||||||
mandir = $(basemandir)/man1
|
mandir = $(basemandir)/man1
|
||||||
|
@ -5,7 +5,7 @@ rootdir = $(srcdir)
|
|||||||
@MCFGR@@MCF@
|
@MCFGR@@MCF@
|
||||||
|
|
||||||
foreigndirs=pc
|
foreigndirs=pc
|
||||||
codedirs=vfs lib doc slang edit gtkedit src gnome icons idl
|
codedirs=vfs lib doc slang edit gtkedit src gnome new_icons idl
|
||||||
unixdirs=intl $(codedirs) @POSUB@
|
unixdirs=intl $(codedirs) @POSUB@
|
||||||
alldirs=$(unixdirs) $(foreigndirs)
|
alldirs=$(unixdirs) $(foreigndirs)
|
||||||
subdirs=$(alldirs)
|
subdirs=$(alldirs)
|
||||||
|
@ -1263,7 +1263,7 @@ src/Makefile
|
|||||||
slang/Makefile
|
slang/Makefile
|
||||||
edit/Makefile
|
edit/Makefile
|
||||||
gtkedit/Makefile
|
gtkedit/Makefile
|
||||||
icons/Makefile
|
new_icons/Makefile
|
||||||
|
|
||||||
lib/mc.ext
|
lib/mc.ext
|
||||||
lib/mc-gnome.ext
|
lib/mc-gnome.ext
|
||||||
|
@ -31,7 +31,9 @@ ALLICONS = a.xpm application.xpm binary.xpm bitmap.xpm blackhole.xpm \
|
|||||||
|
|
||||||
all:
|
all:
|
||||||
|
|
||||||
install: @insticons@
|
install:
|
||||||
|
|
||||||
|
installx: @insticons@
|
||||||
|
|
||||||
install_icons:
|
install_icons:
|
||||||
for I in $(ALLICONS); \
|
for I in $(ALLICONS); \
|
||||||
|
48
new_icons/Makefile.in
Normal file
48
new_icons/Makefile.in
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
|
||||||
|
rootdir = $(srcdir)/..
|
||||||
|
@MCFG@@MCF@
|
||||||
|
|
||||||
|
INSTALL = @INSTALL@
|
||||||
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||||
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
|
#
|
||||||
|
# Distribution variables
|
||||||
|
#
|
||||||
|
|
||||||
|
DISTICONS = Makefile.in $(ALLICONS)
|
||||||
|
ALLICONS =
|
||||||
|
|
||||||
|
all:
|
||||||
|
|
||||||
|
install: @insticons@
|
||||||
|
|
||||||
|
install_icons:
|
||||||
|
for I in $(ALLICONS); \
|
||||||
|
do $(INSTALL_DATA) $(srcdir)/$$I $(DESTDIR)$(icondir)/$$I; done
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
for I in $(ALLICONS); \
|
||||||
|
do $(RMF) $(DESTDIR)$(icondir)/$$I; done
|
||||||
|
-rmdir $(DESTDIR)$(icondir)
|
||||||
|
|
||||||
|
check:
|
||||||
|
@echo no tests are supplied.
|
||||||
|
|
||||||
|
TAGS:
|
||||||
|
|
||||||
|
cross:
|
||||||
|
|
||||||
|
clean:
|
||||||
|
|
||||||
|
realclean:
|
||||||
|
|
||||||
|
distclean:
|
||||||
|
-$(RMF) $(srcdir)/*~ $(srcdir)/Makefile
|
||||||
|
|
||||||
|
distcopy:
|
||||||
|
$(CP) $(DISTICONS) ../../mc-$(VERSION)/icons
|
||||||
|
|
||||||
|
depend dep:
|
Loading…
Reference in New Issue
Block a user