diff options
author | Raph Levien <raph@levien.com> | 2005-01-09 07:29:59 +0100 |
---|---|---|
committer | Raph Levien <raph@levien.com> | 2005-01-09 07:29:59 +0100 |
commit | fb12e1716d653cce57b7b6acfa16c44c748969b4 (patch) | |
tree | 683fd016c6587daa00a1dd55622be4bf50c4241a /Jamfile | |
parent | 72976993f5b39d9ee1599dc89961288b297cdc62 (diff) | |
download | mupdf-fb12e1716d653cce57b7b6acfa16c44c748969b4.tar.xz |
created macpdf app
Diffstat (limited to 'Jamfile')
-rw-r--r-- | Jamfile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -209,12 +209,18 @@ Main pdfdebug : test/pdfdebug.c ; # Main pdfrip : test/pdfrip.c ; # Main pdffunction : test/pdffunction.c ; -Main x11pdf : test/x11pdf.c test/ximage.c ; +# Main x11pdf : test/x11pdf.c test/ximage.c ; + +Main carbonpdf : macpdf/carbonpdf.c macpdf/view.c ; +File macpdf/carbonpdf.app/Contents/MacOS/carbonpdf : carbonpdf ; +MODE on macpdf/carbonpdf.app/Contents/MacOS/carbonpdf = 755 ; CCFLAGS += `pkg-config --cflags gtk+ gthread` ; LINKLIBS on gtkpdf = $(LINKLIBS) `pkg-config --libs gtk+ gmodule gthread` ; -Main gtkpdf : test/gtkpdf.c ; +LINKLIBS on carbonpdf = $(LINKLIBS) -framework Carbon ; + +# Main gtkpdf : test/gtkpdf.c ; LinkLibraries pdfclean @@ -223,6 +229,7 @@ LinkLibraries pdfrip pdffunction x11pdf + carbonpdf gtkpdf : libmupdf libfonts libfitz ; |