X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fcups.git;a=blobdiff_plain;f=man%2FMakefile;h=1e2bb0100526956b9531fb1965590bd69cb609a9;hp=f60d35d7e739f83c7f05e3a90efa69eefbcecf36;hb=5f64df29828e9ca71164342efd357e9debfb6e44;hpb=f7deaa1a21758ec90bf23314af018481ea8aea7f diff --git a/man/Makefile b/man/Makefile index f60d35d7e..1e2bb0100 100644 --- a/man/Makefile +++ b/man/Makefile @@ -1,25 +1,16 @@ # -# "$Id: Makefile 5727 2006-07-12 20:44:30Z mike $" +# "$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,7 +30,12 @@ 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) \ @@ -47,12 +43,20 @@ MAN5 = classes.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) \ @@ -72,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... # @@ -101,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...; \ @@ -131,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... # @@ -180,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 5727 2006-07-12 20:44:30Z mike $". +# End of "$Id: Makefile 7601 2008-05-20 21:08:08Z mike $". #