]> 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 9b2b5c9cdf2504f9ad9f7f128aac46d7c1c7fb07..19147869823f0f45433e01d5ae0f96a61472d41c 100644 (file)
@@ -1,25 +1,16 @@
 #
-# "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $"
+# "$Id: Makefile 3572 2003-04-08 19:56:25Z mike $"
 #
 #   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; \
@@ -112,5 +149,5 @@ include Dependencies
 
 
 #
-# End of "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $".
+# End of "$Id: Makefile 3572 2003-04-08 19:56:25Z mike $".
 #