]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scripting/php/Makefile
Merge changes from CUPS 1.4svn-r7874.
[thirdparty/cups.git] / scripting / php / Makefile
index ec1e3ebc36f8df4ae3338f5158b285c2ad1fcf3f..19147869823f0f45433e01d5ae0f96a61472d41c 100644 (file)
@@ -3,23 +3,14 @@
 #
 #   PHP Makefile for the Common UNIX Printing System (CUPS).
 #
+#   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,19 +76,47 @@ 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:
+
+
 #
 # Uninstall object and target files...
 #