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 35 36 37 38 39 40 41 42 43 44 45 46
|
#
# Makefile for HTMLDOC desktop files.
#
# Copyright 2017 by Michael R Sweet.
# Copyright 1997-2010 by Easy Software Products.
#
# This program is free software. Distribution and use rights are outlined in
# the file "COPYING".
#
#
# Include common definitions...
#
include ../Makedefs
#
# Make everything...
#
all:
#
# Install everything...
#
install:
$(INSTALL_DIR) $(BUILDROOT)$(datadir)/applications; \
$(INSTALL_DATA) htmldoc.desktop $(BUILDROOT)$(datadir)/applications; \
$(INSTALL_DIR) $(BUILDROOT)$(datadir)/mime/packages; \
$(INSTALL_DATA) htmldoc.xml $(BUILDROOT)$(datadir)/mime/packages; \
$(INSTALL_DIR) $(BUILDROOT)$(datadir)/pixmaps; \
$(INSTALL_DATA) htmldoc.xpm $(BUILDROOT)$(datadir)/pixmaps; \
$(INSTALL_DIR) $(BUILDROOT)$(datadir)/icons/hicolor/128x128/apps; \
$(INSTALL_DATA) htmldoc-128.png $(BUILDROOT)$(datadir)/icons/hicolor/128x128/apps/htmldoc.png; \
$(INSTALL_DIR) $(BUILDROOT)$(datadir)/icons/hicolor/256x256/apps; \
$(INSTALL_DATA) htmldoc-256.png $(BUILDROOT)$(datadir)/icons/hicolor/256x256/apps/htmldoc.png; \
#
# Clean out object and library files...
#
clean:
|