]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/Makefile
Fix compile errors.
[thirdparty/cups.git] / cups / Makefile
index ecb008f246de4744e4fd5d6debb5f8676529acb5..6e7f46d481691a2a0ecb9b4a9542b37036ee4608 100644 (file)
@@ -74,6 +74,8 @@ IMAGEOBJS     = \
                error.o \
                interpret.o \
                raster.o
+XFORMOBJS      = \
+               xform.o
 TESTOBJS       = \
                rasterbench.o \
                testadmin.o \
@@ -99,6 +101,7 @@ TESTOBJS     = \
 OBJS   =       \
                $(LIBOBJS) \
                $(IMAGEOBJS) \
+               $(XFORMOBJS) \
                $(TESTOBJS)
 
 
@@ -148,7 +151,8 @@ LIBTARGETS =        \
                $(LIBCUPSIMAGE) \
                $(LIBCUPSSTATIC) \
                $(LIBCUPS) \
-               libcupsimage.a
+               libcupsimage.a \
+               libcupsxform.a
 
 UNITTARGETS =  \
                rasterbench \
@@ -453,6 +457,17 @@ libcupsimage.a:    $(IMAGEOBJS)
        $(RANLIB) $@
 
 
+#
+# libcupsxform.a
+#
+
+libcupsxform.a:        $(XFORMOBJS)
+       echo Archiving $@...
+       $(RM) $@
+       $(AR) $(ARFLAGS) $@ $(XFORMOBJS)
+       $(RANLIB) $@
+
+
 #
 # rasterbench
 #