mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 12:19:28 +01:00
later: the same as i386/darwin, except
a) uses the non-fragile Objective-C ABI/runtime
b) does not require stubs for direct calls/jumps (not required for
i386/darwin under 10.6 and later either, but still generated
there for backwards compatibility)
c) only the same packages are enabled as for ARM/Darwin
d) MacOSAll is compiled specifically for the iPhoneSimulator SDK
This target also defines the symbol "darwin" apart from the target
name "iphonesim" for source code compatibility reasons.
git-svn-id: trunk@16065 -
52 lines
929 B
Makefile
52 lines
929 B
Makefile
#
|
|
# Makefile.fpc for Free Pascal GTK 1.2.x Bindings
|
|
#
|
|
|
|
[package]
|
|
name=gtk1
|
|
version=2.5.1
|
|
|
|
[require]
|
|
libc=y
|
|
packages=opengl
|
|
|
|
[target]
|
|
units=glib gmodule gdk gtk gdkpixbuf
|
|
units_beos=gtkglarea
|
|
units_freebsd=gtkglarea
|
|
units_darwin=gtkglarea
|
|
units_iphonesim=gtkglarea
|
|
units_solaris=gtkglarea
|
|
units_netbsd=gtkglarea
|
|
units_openbsd=gtkglarea
|
|
units_linux=gtkglarea
|
|
units_win32=gtkglarea
|
|
units_win64=gtkglarea
|
|
exampledirs=examples
|
|
|
|
[compiler]
|
|
sourcedir=src/glib src/gdk src/gtk src/gtkgl
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[default]
|
|
fpcdir=../..
|
|
|
|
[shared]
|
|
build=n
|
|
|
|
[rules]
|
|
.NOTPARALLEL:
|
|
glib$(PPUEXT): $(wildcard src/glib/glib*.pp)
|
|
|
|
gmodule$(PPUEXT): $(wildcard src/glib/gmodule*.pp) glib$(PPUEXT)
|
|
|
|
gdk$(PPUEXT): $(wildcard src/gdk/gdk*.pp) glib$(PPUEXT)
|
|
|
|
gdkpixbuf$(PPUEXT): src/gdk/gdkpixbuf.pp gdk$(PPUEXT)
|
|
|
|
gtk$(PPUEXT): $(wildcard src/gtk/gtk*.pp) gdk$(PPUEXT)
|
|
|
|
gtkglarea$(PPUEXT): $(wildcard src/gtkgl/gtkgla*.pp) gdk$(PPUEXT) gtk$(PPUEXT)
|