added compilation of SecurityHandler.cc
[swftools.git] / pdf2swf / xpdf / Makefile.in
index 0b8055c..c47fa5f 100644 (file)
@@ -3,7 +3,7 @@ srcdir = @srcdir@
 top_srcdir = @top_srcdir@
 include ../../Makefile.common
 
-all: libpdf.a
+all: libpdf$(A)
 
 libpdf_objects =  GHash.$(O) GList.$(O) GString.$(O) gmem.$(O) gfile.$(O) \
                  FoFiTrueType.$(O) FoFiType1.$(O) FoFiType1C.$(O) FoFiBase.$(O) FoFiEncodings.$(O) \
@@ -13,8 +13,11 @@ libpdf_objects =  GHash.$(O) GList.$(O) GString.$(O) gmem.$(O) gfile.$(O) \
                  Link.$(O) GlobalParams.$(O) JBIG2Stream.$(O) Page.$(O) JPXStream.$(O) \
                  JArithmeticDecoder.$(O) Gfx.$(O) GfxFont.$(O) CMap.$(O) CharCodeToUnicode.$(O) \
                  PSTokenizer.$(O) FontEncodingTables.$(O) BuiltinFont.$(O) BuiltinFontTables.$(O) \
-                 GfxState.$(O) Function.$(O) Annot.$(O) NameToCharCode.$(O) UnicodeMap.$(O)
+                 GfxState.$(O) Function.$(O) Annot.$(O) NameToCharCode.$(O) UnicodeMap.$(O) cmyk.$(O) \
+                 SecurityHandler.$(O)
 
+cmyk.$(O): cmyk.cc
+       $(CC) -I./ cmyk.cc -o $@
 UnicodeMap.$(O): UnicodeMap.cc
        $(CC) -I./ UnicodeMap.cc -o $@
 NameToCharCode.$(O): NameToCharCode.cc
@@ -79,6 +82,8 @@ Stream.$(O): Stream.cc
        $(CC) -I./ Stream.cc -o $@
 PDFDoc.$(O): PDFDoc.cc
        $(CC) -I./ PDFDoc.cc -o $@
+SecurityHandler.$(O): SecurityHandler.cc SecurityHandler.h
+       $(CC) -I./ SecurityHandler.cc -o $@
 OutputDev.$(O): OutputDev.cc GfxState.h Stream.h Object.h OutputDev.h gtypes.h CharTypes.h
        $(CC) -I./ OutputDev.cc -o $@
 FoFiBase.$(O): FoFiBase.cc
@@ -102,13 +107,13 @@ gfile.$(O): gfile.cc
 gmem.$(O): gmem.c
        $(C) -I./ gmem.c -o $@
 
-libpdf.a: $(libpdf_objects)
-       $(AR) r libpdf.a $(libpdf_objects)
-       $(RANLIB) libpdf.a
+libpdf$(A): $(libpdf_objects)
+       $(AR) r libpdf$(A) $(libpdf_objects)
+       $(RANLIB) libpdf$(A)
 
 install:
 uninstall:
 
 clean: 
-       rm -f *.o *.obj *.lo *.a *.la gmon.out
+       rm -f *.o *.obj *.lo *.a *.lib *.la gmon.out