Blame data/Makefile

Packit 2fc92b
#
Packit 2fc92b
# Datafile makefile for CUPS.
Packit 2fc92b
#
Packit 2fc92b
# Copyright 2007-2014 by Apple Inc.
Packit 2fc92b
# Copyright 1993-2006 by Easy Software Products.
Packit 2fc92b
#
Packit 2fc92b
# These coded instructions, statements, and computer programs are the
Packit 2fc92b
# property of Apple Inc. and are protected by Federal copyright
Packit 2fc92b
# law.  Distribution and use rights are outlined in the file "LICENSE.txt"
Packit 2fc92b
# which should have been included with this file.  If this file is
Packit 2fc92b
# missing or damaged, see the license at "http://www.cups.org/".
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
include ../Makedefs
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Data files...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
PPDCFILES =	\
Packit 2fc92b
		epson.h \
Packit 2fc92b
		font.defs \
Packit 2fc92b
		hp.h \
Packit 2fc92b
		label.h \
Packit 2fc92b
		media.defs \
Packit 2fc92b
		raster.defs
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Make everything...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
all:
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Make library targets...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
libs:
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Make unit tests...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
unittests:
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Clean all config and object files...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
clean:
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Dummy depend...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
depend:
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Install all targets...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
install:	all install-data install-headers install-libs install-exec
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Install data files...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
install-data:
Packit 2fc92b
	$(INSTALL_DIR) -m 755 $(DATADIR)/banners
Packit 2fc92b
	$(INSTALL_DIR) -m 755 $(DATADIR)/data
Packit 2fc92b
	$(INSTALL_DIR) -m 755 $(DATADIR)/model
Packit 2fc92b
	$(INSTALL_DIR) -m 755 $(DATADIR)/ppdc
Packit 2fc92b
	for file in $(PPDCFILES); do \
Packit 2fc92b
		$(INSTALL_DATA) $$file $(DATADIR)/ppdc; \
Packit 2fc92b
	done
Packit 2fc92b
	$(INSTALL_DIR) -m 755 $(DATADIR)/profiles
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Install programs...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
install-exec:
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Install headers...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
install-headers:
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Install libraries...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
install-libs:
Packit 2fc92b
Packit 2fc92b
Packit 2fc92b
#
Packit 2fc92b
# Uninstall files...
Packit 2fc92b
#
Packit 2fc92b
Packit 2fc92b
uninstall:
Packit 2fc92b
	for file in $(PPDCFILES); do \
Packit 2fc92b
		$(RM) $(DATADIR)/ppdc/$$file; \
Packit 2fc92b
	done
Packit 2fc92b
	-$(RMDIR) $(DATADIR)/profiles
Packit 2fc92b
	-$(RMDIR) $(DATADIR)/ppdc
Packit 2fc92b
	-$(RMDIR) $(DATADIR)/model
Packit 2fc92b
	-$(RMDIR) $(DATADIR)/data
Packit 2fc92b
	-$(RMDIR) $(DATADIR)/banners
Packit 2fc92b
	-$(RMDIR) $(DATADIR)