X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fcups.git;a=blobdiff_plain;f=man%2FMakefile;h=1e2bb0100526956b9531fb1965590bd69cb609a9;hp=2ea1b305f7386b920ae97914d98459ec99b86e75;hb=5f64df29828e9ca71164342efd357e9debfb6e44;hpb=c07d5b2daf136da7af01c48ff78135d06d2762fc diff --git a/man/Makefile b/man/Makefile index 2ea1b305f..1e2bb0100 100644 --- a/man/Makefile +++ b/man/Makefile @@ -1,25 +1,16 @@ # -# "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $" +# "$Id: Makefile 7601 2008-05-20 21:08:08Z mike $" # # Man page makefile for the Common UNIX Printing System (CUPS). # +# Copyright 2007-2008 by Apple Inc. # Copyright 1993-2006 by Easy Software Products. # # These coded instructions, statements, and computer programs are the -# property of Easy Software Products and are protected by Federal -# copyright law. Distribution and use rights are outlined in the file -# "LICENSE.txt" which should have been included with this file. If this -# file is missing or damaged please contact Easy Software Products -# at: -# -# Attn: CUPS Licensing Information -# Easy Software Products -# 44141 Airport View Drive, Suite 204 -# Hollywood, Maryland 20636 USA -# -# Voice: (301) 373-9600 -# EMail: cups-info@cups.org -# WWW: http://www.cups.org +# property of Apple Inc. and are protected by Federal copyright +# law. Distribution and use rights are outlined in the file "LICENSE.txt" +# which should have been included with this file. If this file is +# file is missing or damaged, see the license at "http://www.cups.org/". # include ../Makedefs @@ -39,19 +30,33 @@ MAN1 = cancel.$(MAN1EXT) \ lpq.$(MAN1EXT) \ lprm.$(MAN1EXT) \ lpr.$(MAN1EXT) \ - lpstat.$(MAN1EXT) + lpstat.$(MAN1EXT) \ + ppdc.$(MAN1EXT) \ + ppdhtml.$(MAN1EXT) \ + ppdi.$(MAN1EXT) \ + ppdmerge.$(MAN1EXT) \ + ppdpo.$(MAN1EXT) MAN5 = classes.conf.$(MAN5EXT) \ client.conf.$(MAN5EXT) \ cups-snmp.conf.$(MAN5EXT) \ cupsd.conf.$(MAN5EXT) \ + mailto.conf.$(MAN5EXT) \ mime.convs.$(MAN5EXT) \ mime.types.$(MAN5EXT) \ + ppdcfile.$(MAN5EXT) \ printers.conf.$(MAN5EXT) \ subscriptions.conf.$(MAN5EXT) MAN7 = backend.$(MAN7EXT) \ - filter.$(MAN7EXT) + commandtoescpx.$(MAN7EXT) \ + commandtopclx.$(MAN7EXT) \ + drv.$(MAN7EXT) \ + filter.$(MAN7EXT) \ + rastertoescpx.$(MAN7EXT) \ + rastertopclx.$(MAN7EXT) MAN8 = accept.$(MAN8EXT) \ cupsaddsmb.$(MAN8EXT) \ + cupsctl.$(MAN8EXT) \ + cupsfilter.$(MAN8EXT) \ cups-deviced.$(MAN8EXT) \ cups-driverd.$(MAN8EXT) \ cups-lpd.$(MAN8EXT) \ @@ -71,6 +76,20 @@ MAN8 = accept.$(MAN8EXT) \ all: $(MAN1) $(MAN5) $(MAN7) $(MAN8) html +# +# Make library targets... +# + +libs: + + +# +# Make unit tests... +# + +unittests: + + # # Clean all config and object files... # @@ -100,10 +119,17 @@ depend: # -# Install files... +# Install all targets... +# + +install: all install-data install-headers install-libs install-exec + + +# +# Install data files... # -install: all +install-data: $(INSTALL_DIR) -m 755 $(MANDIR)/man1 for file in $(MAN1); do \ echo Installing $$file in $(MANDIR)/man1...; \ @@ -130,6 +156,27 @@ install: all $(LN) cupsenable.$(MAN8EXT) $(AMANDIR)/man$(MAN8DIR)/cupsdisable.$(MAN8EXT) +# +# Install programs... +# + +install-exec: + + +# +# Install headers... +# + +install-headers: + + +# +# Install libraries... +# + +install-libs: + + # # Uninstall files... # @@ -179,9 +226,9 @@ html: $(MAN1) $(MAN5) $(MAN7) $(MAN8) mantohtml done mantohtml: mantohtml.o - $(CC) $(LDFLAGS) -o $@ mantohtml.o + $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ mantohtml.o # -# End of "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $". +# End of "$Id: Makefile 7601 2008-05-20 21:08:08Z mike $". #