mirror of https://github.com/MidnightCommander/mc
73 lines
1.7 KiB
Makefile
73 lines
1.7 KiB
Makefile
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 = a.xpm application.xpm binary.xpm bitmap.xpm blackhole.xpm \
|
|
bug.xpm c.xpm calc.xpm calendar.xpm cc.xpm cdrom.xpm clipboard.xpm \
|
|
compressed.xpm core.xpm data.xpm draw.xpm edit.xpm editor.xpm \
|
|
emacs.xpm f.xpm fig.xpm font.xpm framemaker.xpm gif.xpm h.xpm \
|
|
hidden.xpm hidden_dir.xpm html.xpm index.xpm info.xpm jpeg.xpm \
|
|
key_dir.xpm lharc.xpm link.xpm link_bad.xpm link_dir.xpm lock_dir.xpm \
|
|
mail.xpm mail_dir.xpm makefile.xpm man.xpm music.xpm network_dir.xpm \
|
|
news_dir.xpm no_entry.xpm o.xpm open_dir.xpm p.xpm parent_dir.xpm \
|
|
pbm.xpm pgm.xpm plain.xpm plain_dir.xpm postscript.xpm ppm.xpm \
|
|
printer.xpm recycle.xpm report.xpm rubbish.xpm s.xpm sc.xpm \
|
|
scroll.xpm so.xpm sound.xpm spreadsheet.xpm stop.xpm sys.xpm \
|
|
system_dir.xpm tag.xpm tar.xpm taz.xpm tex-view.xpm tex.xpm \
|
|
text.xpm tiff.xpm trash.xpm uu.xpm window.xpm wizard.xpm word.xpm \
|
|
xbm.xpm xchess.xpm xfig.xpm xman.xpm xmosaic.xpm xpaint.xpm xpm.xpm \
|
|
zip.xpm zoo.xpm
|
|
|
|
#
|
|
# We are using these icons from the above in gnome, remove as new versions
|
|
# are obtained
|
|
#
|
|
DECENTICONS = \
|
|
sound.xpm makefile.xpm \
|
|
trash.xpm
|
|
|
|
all:
|
|
|
|
installx:
|
|
|
|
install: @insticons@
|
|
|
|
install_icons:
|
|
for I in $(DECENTICONS); \
|
|
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:
|