X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fcups.git;a=blobdiff_plain;f=scripting%2Fphp%2FMakefile;h=19147869823f0f45433e01d5ae0f96a61472d41c;hp=3960571b3381029f9dbfc71e5a9553b1e3e133e1;hb=5f64df29828e9ca71164342efd357e9debfb6e44;hpb=80ca45929e4a37c300b602b7d444a2e8f2263bf6 diff --git a/scripting/php/Makefile b/scripting/php/Makefile index 3960571b3..191478698 100644 --- a/scripting/php/Makefile +++ b/scripting/php/Makefile @@ -3,23 +3,14 @@ # # PHP Makefile for the Common UNIX Printing System (CUPS). # -# Copyright 1997-2006 by Easy Software Products, all rights reserved. +# Copyright 2007-2008 by Apple Inc. +# Copyright 1997-2007 by Easy Software Products, all rights reserved. # # 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-9603 -# 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 @@ -30,7 +21,7 @@ include ../../Makedefs # PHPDIR = $(BUILDROOT)`$(PHPCONFIG) --extension-dir` -OPTIONS = -I../.. `$(PHPCONFIG) --includes` +OPTIONS = $(PHPOPTIONS) # @@ -54,6 +45,20 @@ PHPCUPS = phpcups.so all: $(PHPCUPS) +# +# Make library targets... +# + +libs: + + +# +# Make unit tests... +# + +unittests: + + # # Remove object and target files... # @@ -71,13 +76,45 @@ depend: # -# Install object and target files... +# Install all targets... +# + +install: all install-data install-headers install-libs install-exec + + +# +# Install data files... +# + +install-data: + + +# +# Install programs... # -install: all +install-exec: echo Installing $(PHPCUPS) in $(PHPDIR) $(INSTALL_DIR) $(PHPDIR) - $(INSTALL_BIN) $(PHPCUPS) $(PHPDIR) + $(INSTALL_LIB) $(PHPCUPS) $(PHPDIR) + if test "x$(SYMROOT)" != x; then \ + $(INSTALL_DIR) $(SYMROOT); \ + cp $(PHPCUPS) $(SYMROOT); \ + fi + + +# +# Install headers... +# + +install-headers: + + +# +# Install libraries... +# + +install-libs: # @@ -96,7 +133,7 @@ uninstall: phpcups.so: $(OBJS) ../../Makedefs echo Linking $@... if test `uname` = Darwin; then \ - DSOFLAGS="-bundle -flat_namespace -undefined suppress"; \ + DSOFLAGS="-bundle -flat_namespace -undefined suppress $(RC_CFLAGS)"; \ else \ DSOFLAGS="$(DSOFLAGS)"; \ fi; \