| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- #
- # "$Id: makeinclude.in 8864 2011-07-19 04:49:30Z greg.ercolano $"
- #
- # Make include file for the Fast Light Tool Kit (FLTK).
- #
- # Copyright 1998-2010 by Bill Spitzak and others.
- #
- # This library is free software. Distribution and use rights are outlined in
- # the file "COPYING" which should have been included with this file. If this
- # file is missing or damaged, see the license at:
- #
- # http://www.fltk.org/COPYING.php
- #
- # Please report all bugs and problems on the following page:
- #
- # http://www.fltk.org/str.php
- #
- prefix = /usr/local
- exec_prefix = ${prefix}
- bindir = ${exec_prefix}/bin
- datadir = ${datarootdir}
- datarootdir = ${prefix}/share
- includedir = ${prefix}/include
- libdir = ${exec_prefix}/lib
- mandir = ${datarootdir}/man
- srcdir = .
- docdir = $(datadir)/doc/fltk
- USEMMFILES = No
- # programs we use...
- HTMLDOC =
- DOXYDOC =
- INSTALL = /bin/install -c
- LN = ln -s
- NROFF =
- RM = rm -f
- RMDIR = rm -rf
- SHELL = /bin/sh
- STRIP = strip
- # compiler names:
- CXX = g++
- CC = gcc
- MAKEDEPEND = $(CXX) -M
- # (Windows) resource compiler
- RC = /mingw/bin/windres
- # flags for C++ compiler:
- ARCHFLAGS = -I../../libharu/include
- OPTIM = -O3 -Wall -Wunused -Wno-format-y2k -fno-exceptions -fno-strict-aliasing
- #OPTIM = -g -O2 -Wall -Wunused -Wno-format-y2k -fno-exceptions -fno-strict-aliasing
- CFLAGS = $(OPTIM) -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -mwindows -DWIN32 -DUSE_OPENGL32 -pipe -mms-bitfields -march=i686
- CXXFLAGS = $(OPTIM) -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -mwindows -DWIN32 -DUSE_OPENGL32 $(FLTKFLAGS)
- # program to make the archive:
- LIBNAME = ../lib/libfltk.a
- FLLIBNAME = ../lib/libfltk_forms.a
- GLLIBNAME = ../lib/libfltk_gl.a
- IMGLIBNAME = ../lib/libfltk_images.a
- CAIROLIBNAME = ../lib/libfltk_cairo.a
- LIBCOMMAND = /mingw/bin/ar cr
- LIBEXT = .a
- RANLIB = ranlib
- DSONAME =
- FLDSONAME =
- GLDSONAME =
- IMGDSONAME =
- CAIRODSONAME =
- DSOCOMMAND = echo
- LIBBASENAME = libfltk.a
- FLLIBBASENAME = libfltk_forms.a
- GLLIBBASENAME = libfltk_gl.a
- IMGLIBBASENAME = libfltk_images.a
- CAIROLIBBASENAME= libfltk_cairo.a
- # libraries to link with:
- AUDIOLIBS = -lwinmm
- CAIROLIBS =
- CAIROFLAGS =
- DSOFLAGS = -L. -mwindows -L../../libharu/src -lhpdfs
- LDFLAGS = $(OPTIM) -mwindows -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc
- LDLIBS = -lole32 -luuid -lcomctl32 -lwinspool
- GLDLIBS = -lglu32 -lopengl32 -lole32 -luuid -lcomctl32 -lwinspool
- LINKFLTK = ../lib/libfltk.a
- LINKFLTKGL = ../lib/libfltk_gl.a
- LINKFLTKFORMS = ../lib/libfltk_forms.a ../lib/libfltk.a
- LINKFLTKIMG = ../lib/libfltk_images.a ../lib/libfltk.a $(IMAGELIBS)
- LINKFLTKCAIRO = $(CAIROLIBS)
- FLTKCAIROOPTION =
- LINKSHARED = ../lib/libfltk_images.a ../lib/libfltk_forms.a ../lib/libfltk.a $(IMAGELIBS) $(CAIROLIBS)
- IMAGELIBS = -L../lib -lfltk_png -lfltk_z -lfltk_jpeg
- # image libraries to build...
- IMAGEDIRS = jpeg zlib png
- CAIRODIR =
- # The extension to use for executables...
- EXEEXT = .exe
- # Do we build the OpenGL demos?
- GLDEMOS = gldemos
- # Do we build the threads demo?
- THREADS = threads.exe
- # Name of FLUID executable we install
- FLUID = fluid$(EXEEXT)
- # Possible steps for OS X build only
- OSX_ONLY = :
- # Man page extensions...
- CAT1EXT = 1
- CAT3EXT = 3
- CAT6EXT = 6
- #
- # Installation programs...
- #
- INSTALL_BIN = $(INSTALL) -m 755
- INSTALL_DATA = $(INSTALL) -m 644
- INSTALL_DIR = $(INSTALL) -d
- INSTALL_LIB = $(INSTALL) -m 755
- INSTALL_MAN = $(INSTALL) -m 644
- INSTALL_SCRIPT = $(INSTALL) -m 755
- # Additional GUI install/uninstall targets...
- INSTALL_DESKTOP =
- UNINSTALL_DESKTOP =
- # Be quiet when building...
- .SILENT:
- # Build commands and filename extensions...
- .SUFFIXES: .0 .1 .3 .6 .c .cxx .mm .h .fl .man .o .z $(EXEEXT)
- .o$(EXEEXT):
- echo Linking $@...
- $(CXX) $(ARCHFLAGS) $(LDFLAGS) $< $(LINKFLTK) $(LDLIBS) -o $@
- .c.o:
- echo Compiling $<...
- $(CC) -I.. $(ARCHFLAGS) -I../png -I../jpeg -I../zlib $(CFLAGS) -c $< -o $@
- .cxx.o:
- echo Compiling $<...
- $(CXX) -I.. $(ARCHFLAGS) -I../png -I../jpeg -I../zlib $(CXXFLAGS) -c $< -o $@
-
- .mm.o:
- echo Compiling $<...
- $(CXX) -I.. $(ARCHFLAGS) $(CXXFLAGS) -x objective-c++ -c $< -o $@
- .man.0 .man.1 .man.3 .man.6:
- echo Formatting $<...
- rm -f $@
- $(NROFF) -man $< >$@
- .man.z:
- echo Formatting $<...
- rm -f $@ t.z
- $(NROFF) -man $< >t
- pack -f t
- mv t.z $@
- #
- # End of "$Id: makeinclude.in 8113 2010-12-23 14:24:29Z manolo $".
- #
|