|
@@ -1,8 +1,8 @@
|
|
|
#
|
|
|
-# Don't edit, this file is generated by FPCMake Version 2.0.0 [2011/05/19]
|
|
|
+# Don't edit, this file is generated by FPCMake Version 2.0.0 [2011/02/24]
|
|
|
#
|
|
|
default: all
|
|
|
-MAKEFILETARGETS=i386-linux i386-go32v2 i386-win32 i386-os2 i386-freebsd i386-beos i386-haiku i386-netbsd i386-solaris i386-qnx i386-netware i386-openbsd i386-wdosx i386-darwin i386-emx i386-watcom i386-netwlibc i386-wince i386-embedded i386-symbian i386-nativent i386-iphonesim m68k-linux m68k-freebsd m68k-netbsd m68k-amiga m68k-atari m68k-openbsd m68k-palmos m68k-embedded powerpc-linux powerpc-netbsd powerpc-amiga powerpc-macos powerpc-darwin powerpc-morphos powerpc-embedded powerpc-wii sparc-linux sparc-netbsd sparc-solaris sparc-embedded x86_64-linux x86_64-freebsd x86_64-solaris x86_64-darwin x86_64-win64 x86_64-embedded arm-linux arm-palmos arm-darwin arm-wince arm-gba arm-nds arm-embedded arm-symbian powerpc64-linux powerpc64-darwin powerpc64-embedded avr-embedded armeb-linux armeb-embedded mipsel-linux
|
|
|
+MAKEFILETARGETS=i386-linux i386-go32v2 i386-win32 i386-os2 i386-freebsd i386-beos i386-haiku i386-netbsd i386-solaris i386-qnx i386-netware i386-openbsd i386-wdosx i386-darwin i386-emx i386-watcom i386-netwlibc i386-wince i386-embedded i386-symbian i386-nativent i386-iphonesim m68k-linux m68k-freebsd m68k-netbsd m68k-amiga m68k-atari m68k-openbsd m68k-palmos m68k-embedded powerpc-linux powerpc-netbsd powerpc-amiga powerpc-macos powerpc-darwin powerpc-morphos powerpc-embedded sparc-linux sparc-netbsd sparc-solaris sparc-embedded x86_64-linux x86_64-freebsd x86_64-solaris x86_64-darwin x86_64-win64 x86_64-embedded arm-linux arm-palmos arm-darwin arm-wince arm-gba arm-nds arm-embedded arm-symbian powerpc64-linux powerpc64-darwin powerpc64-embedded avr-embedded armeb-linux armeb-embedded mipsel-linux
|
|
|
BSDs = freebsd netbsd openbsd darwin
|
|
|
UNIXs = linux $(BSDs) solaris qnx haiku
|
|
|
LIMIT83fs = go32v2 os2 emx watcom
|
|
@@ -107,37 +107,25 @@ FPC=$(PP)
|
|
|
endif
|
|
|
endif
|
|
|
ifndef FPC
|
|
|
-DETERMINE_NATIVE_COMPILER=1
|
|
|
-else
|
|
|
-ifdef CROSSCOMPILE
|
|
|
-ifndef FPCFPMAKE
|
|
|
-DETERMINE_NATIVE_COMPILER=1
|
|
|
-endif
|
|
|
-endif
|
|
|
-endif
|
|
|
-ifdef DETERMINE_NATIVE_COMPILER
|
|
|
FPCPROG:=$(strip $(wildcard $(addsuffix /fpc$(SRCEXEEXT),$(SEARCHPATH))))
|
|
|
ifneq ($(FPCPROG),)
|
|
|
FPCPROG:=$(firstword $(FPCPROG))
|
|
|
ifneq ($(CPU_TARGET),)
|
|
|
-FPCNATIVE:=$(shell $(FPCPROG) -P$(CPU_TARGET) -PB)
|
|
|
+FPC:=$(shell $(FPCPROG) -P$(CPU_TARGET) -PB)
|
|
|
else
|
|
|
-FPCNATIVE:=$(shell $(FPCPROG) -PB)
|
|
|
+FPC:=$(shell $(FPCPROG) -PB)
|
|
|
endif
|
|
|
-ifneq ($(findstring Error,$(FPCNATIVE)),)
|
|
|
-override FPCNATIVE=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
|
|
|
+ifneq ($(findstring Error,$(FPC)),)
|
|
|
+override FPC=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
|
|
|
else
|
|
|
-ifeq ($(strip $(wildcard $(FPCNATIVE))),)
|
|
|
-FPCNATIVE:=$(firstword $(FPCPROG))
|
|
|
+ifeq ($(strip $(wildcard $(FPC))),)
|
|
|
+FPC:=$(firstword $(FPCPROG))
|
|
|
endif
|
|
|
endif
|
|
|
else
|
|
|
-override FPCNATIVE=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
|
|
|
+override FPC=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
|
|
|
endif
|
|
|
endif
|
|
|
-ifndef FPC
|
|
|
-FPC=$(FPCNATIVE)
|
|
|
-endif
|
|
|
override FPC:=$(subst $(SRCEXEEXT),,$(FPC))
|
|
|
override FPC:=$(subst \,/,$(FPC))$(SRCEXEEXT)
|
|
|
FOUNDFPC:=$(strip $(wildcard $(FPC)))
|
|
@@ -276,45 +264,32 @@ ifeq ($(UNITSDIR),)
|
|
|
UNITSDIR:=$(wildcard $(FPCDIR)/units/$(OS_TARGET))
|
|
|
endif
|
|
|
PACKAGESDIR:=$(wildcard $(FPCDIR) $(FPCDIR)/packages $(FPCDIR)/packages/base $(FPCDIR)/packages/extra)
|
|
|
-ifndef FPCFPMAKE
|
|
|
-ifdef CROSSCOMPILE
|
|
|
-ifeq ($(strip $(wildcard $(addsuffix /compiler/ppc$(SRCEXEEXT),$(FPCDIR)))),)
|
|
|
-FPCFPMAKE:=$(FPCNATIVE)
|
|
|
-else
|
|
|
-FPCFPMAKE=$(strip $(wildcard $(addsuffix /compiler/ppc$(SRCEXEEXT),$(FPCDIR))))
|
|
|
-export FPCFPMAKE
|
|
|
-endif
|
|
|
-else
|
|
|
-FPCFPMAKE=$(FPC)
|
|
|
-export FPCFPMAKE
|
|
|
-endif
|
|
|
-endif
|
|
|
ifeq ($(FULL_TARGET),i386-linux)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib gmp libsee ptc graph libc unixutil graph pxlib bzip2
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib gmp libsee ptc graph libc unixutil graph pxlib bzip2
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-go32v2)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv graph unzip gdbint
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-win32)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv winunits-base winunits-jedi fcl-web fastcgi ibase mysql zlib oracle odbc postgres sqlite imagemagick gdbint libpng mad tcl opengl gtk1 gtk2 librsvg a52 cdrom fpgtk openal fftw lua fcl-extra zorba oggvorbis sdl openssl graph pcap httpd13 httpd20 httpd22 pxlib numlib winceunits cairo libxml gmp opencl libsee nvapi ptc
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv winunits-base winunits-jedi fcl-web fastcgi ibase mysql zlib oracle odbc postgres sqlite imagemagick gdbint libpng mad tcl opengl gtk1 gtk2 librsvg a52 cdrom fpgtk openal fftw lua fcl-extra zorba oggvorbis sdl openssl graph pcap httpd22 pxlib numlib winceunits cairo libxml gmp opencl libsee nvapi ptc
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-os2)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv zlib libpng x11 tcl fpgtk rexx os2units gtk1 imlib
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-freebsd)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd13 httpd20 httpd22 pxlib numlib users iconvenc gmp fcl-extra libxml
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd22 pxlib numlib users iconvenc gmp fcl-extra libxml
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-beos)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd13 httpd20 httpd22 pxlib numlib iconvenc
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd22 pxlib numlib iconvenc
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-haiku)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd13 httpd20 httpd22 pxlib numlib iconvenc
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd22 pxlib numlib iconvenc
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-netbsd)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-solaris)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 bfd svgalib fcl-extra imlib utmp fpgtk xforms fftw pcap ggi openssl gnome1 httpd13 httpd20 httpd22 numlib iconvenc gtk2 cairo
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 bfd svgalib fcl-extra imlib utmp fpgtk xforms fftw pcap ggi openssl gnome1 httpd22 numlib iconvenc gtk2 cairo
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-qnx)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
@@ -323,13 +298,13 @@ ifeq ($(FULL_TARGET),i386-netware)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv zlib unzip
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-openbsd)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-wdosx)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-darwin)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint graph sdl opengl x11 cairo gtk1 gtk2 librsvg fpgtk xforms gnome1 httpd13 httpd20 httpd22 imlib objcrtl cocoaint opencl openal
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint graph sdl opengl x11 cairo gtk1 gtk2 librsvg fpgtk xforms gnome1 httpd22 imlib objcrtl cocoaint opencl openal
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-emx)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv zlib libpng x11 tcl fpgtk rexx os2units gtk1 imlib
|
|
@@ -353,16 +328,16 @@ ifeq ($(FULL_TARGET),i386-nativent)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),i386-iphonesim)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint httpd13 httpd20 httpd22 opengles objcrtl
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint httpd22 opengles objcrtl
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),m68k-linux)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),m68k-freebsd)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd13 httpd20 httpd22 pxlib numlib users iconvenc gmp fcl-extra libxml
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd22 pxlib numlib users iconvenc gmp fcl-extra libxml
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),m68k-netbsd)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),m68k-amiga)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg amunits
|
|
@@ -371,7 +346,7 @@ ifeq ($(FULL_TARGET),m68k-atari)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),m68k-openbsd)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),m68k-palmos)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg palmunits
|
|
@@ -380,10 +355,10 @@ ifeq ($(FULL_TARGET),m68k-embedded)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),powerpc-linux)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),powerpc-netbsd)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),powerpc-amiga)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg amunits
|
|
@@ -392,7 +367,7 @@ ifeq ($(FULL_TARGET),powerpc-macos)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),powerpc-darwin)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint graph sdl opengl x11 cairo gtk1 gtk2 librsvg fpgtk xforms gnome1 httpd13 httpd20 httpd22 imlib objcrtl cocoaint
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint graph sdl opengl x11 cairo gtk1 gtk2 librsvg fpgtk xforms gnome1 httpd22 imlib objcrtl cocoaint
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),powerpc-morphos)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv opengl sdl
|
|
@@ -400,47 +375,44 @@ endif
|
|
|
ifeq ($(FULL_TARGET),powerpc-embedded)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
-ifeq ($(FULL_TARGET),powerpc-wii)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg libogcfpc
|
|
|
-endif
|
|
|
ifeq ($(FULL_TARGET),sparc-linux)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),sparc-netbsd)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 gtk2 librsvg bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),sparc-solaris)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 bfd svgalib fcl-extra imlib utmp fpgtk xforms fftw pcap ggi openssl gnome1 httpd13 httpd20 httpd22 numlib iconvenc gtk2 cairo
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 bfd svgalib fcl-extra imlib utmp fpgtk xforms fftw pcap ggi openssl gnome1 httpd22 numlib iconvenc gtk2 cairo
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),sparc-embedded)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),x86_64-linux)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),x86_64-freebsd)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd13 httpd20 httpd22 pxlib numlib users iconvenc gmp fcl-extra libxml
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick gdbint libpng x11 gdbm tcl syslog libcurl opengl cairo bfd aspell svgalib imlib utmp fpgtk xforms fftw pcap ggi sdl openssl graph gnome1 gtk1 gtk2 librsvg httpd22 pxlib numlib users iconvenc gmp fcl-extra libxml
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),x86_64-solaris)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 bfd svgalib fcl-extra imlib utmp fpgtk xforms fftw pcap ggi openssl gnome1 httpd13 httpd20 httpd22 numlib iconvenc gtk2 cairo
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng x11 gdbm tcl syslog libcurl opengl cairo gtk1 bfd svgalib fcl-extra imlib utmp fpgtk xforms fftw pcap ggi openssl gnome1 httpd22 numlib iconvenc gtk2 cairo
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),x86_64-darwin)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint opengl x11 cairo gtk1 gtk2 librsvg fpgtk xforms gnome1 httpd13 httpd20 httpd22 imlib cocoaint
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint opengl x11 cairo gtk1 gtk2 librsvg fpgtk xforms gnome1 httpd22 imlib cocoaint
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),x86_64-win64)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv winunits-base winunits-jedi fcl-web fastcgi ibase mysql zlib oracle odbc postgres sqlite imagemagick gdbint tcl opengl gtk1 fpgtk fftw sdl openssl cdrom httpd13 httpd20 httpd22 numlib fcl-extra opencl nvapi ptc graph
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv winunits-base winunits-jedi fcl-web fastcgi ibase mysql zlib oracle odbc postgres sqlite imagemagick gdbint tcl opengl gtk1 fpgtk fftw sdl openssl cdrom httpd22 numlib fcl-extra opencl nvapi ptc graph
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),x86_64-embedded)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),arm-linux)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),arm-palmos)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg palmunits
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),arm-darwin)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint httpd13 httpd20 httpd22 opengles objcrtl
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint httpd22 opengles objcrtl
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),arm-wince)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg winceunits httpd22 fcl-web fastcgi tcl fftw unzip zlib sqlite mysql ibase postgres oracle odbc sdl openssl oggvorbis numlib
|
|
@@ -458,10 +430,10 @@ ifeq ($(FULL_TARGET),arm-symbian)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),powerpc64-linux)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib gmp libsee ptc graph
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),powerpc64-darwin)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint opengl x11 cairo gtk1 gtk2 librsvg fpgtk xforms gnome1 httpd13 httpd20 httpd22 imlib cocoaint
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses zlib oracle odbc postgres sqlite pthreads imagemagick libpng gdbm tcl syslog libcurl bfd aspell utmp fftw pcap openssl numlib iconvenc gmp fcl-extra univint opengl x11 cairo gtk1 gtk2 librsvg fpgtk xforms gnome1 httpd22 imlib cocoaint
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),powerpc64-embedded)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
@@ -470,13 +442,13 @@ ifeq ($(FULL_TARGET),avr-embedded)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),armeb-linux)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib gmp libsee ptc
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib gmp libsee ptc
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),armeb-embedded)
|
|
|
override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg
|
|
|
endif
|
|
|
ifeq ($(FULL_TARGET),mipsel-linux)
|
|
|
-override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd13 httpd20 httpd22 pxlib numlib gmp libsee ptc
|
|
|
+override TARGET_DIRS+=hash pasjpeg paszlib fpmkunit fcl-xml fcl-base fcl-db fcl-image fcl-net fcl-passrc fcl-registry fcl-fpcunit fcl-json fcl-js fcl-process unzip regexpr chm fcl-res libgd symbolic bzip2 hermes fppkg fv fcl-web fastcgi fcl-async ibase mysql ncurses unzip zlib oracle dbus odbc postgres sqlite pthreads imagemagick gdbint libpng x11 uuid ldap modplug dts mad gdbm tcl syslog libcurl opengl opencl cairo gtk1 gtk2 librsvg a52 bfd aspell svgalib newt cdrom users iconvenc libxml proj4 fcl-extra zorba imlib utmp fpgtk openal lua oggvorbis xforms fftw pcap ggi sdl openssl gnome1 httpd22 pxlib numlib gmp libsee ptc
|
|
|
endif
|
|
|
override INSTALL_FPCPACKAGE=y
|
|
|
override INSTALL_FPCSUBDIR=packages
|
|
@@ -826,11 +798,6 @@ ifeq ($(OS_TARGET),NativeNT)
|
|
|
SHAREDLIBEXT=.dll
|
|
|
SHORTSUFFIX=nativent
|
|
|
endif
|
|
|
-ifeq ($(OS_TARGET),wii)
|
|
|
-EXEEXT=.dol
|
|
|
-SHAREDLIBEXT=.so
|
|
|
-SHORTSUFFIX=wii
|
|
|
-endif
|
|
|
else
|
|
|
ifeq ($(OS_TARGET),go32v1)
|
|
|
PPUEXT=.pp1
|
|
@@ -1504,7 +1471,6 @@ fpc_baseinfo:
|
|
|
@$(ECHO) Full Target.. $(FULL_TARGET)
|
|
|
@$(ECHO) SourceSuffix. $(SOURCESUFFIX)
|
|
|
@$(ECHO) TargetSuffix. $(TARGETSUFFIX)
|
|
|
- @$(ECHO) FPC fpmake... $(FPCFPMAKE)
|
|
|
@$(ECHO)
|
|
|
@$(ECHO) == Directory info ==
|
|
|
@$(ECHO)
|
|
@@ -1676,8 +1642,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -1780,8 +1744,6 @@ TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GRAPH=1
|
|
|
TARGET_DIRS_PCAP=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -1895,8 +1857,6 @@ TARGET_DIRS_GNOME1=1
|
|
|
TARGET_DIRS_GTK1=1
|
|
|
TARGET_DIRS_GTK2=1
|
|
|
TARGET_DIRS_LIBRSVG=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -1971,8 +1931,6 @@ TARGET_DIRS_GNOME1=1
|
|
|
TARGET_DIRS_GTK1=1
|
|
|
TARGET_DIRS_GTK2=1
|
|
|
TARGET_DIRS_LIBRSVG=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -2043,8 +2001,6 @@ TARGET_DIRS_GNOME1=1
|
|
|
TARGET_DIRS_GTK1=1
|
|
|
TARGET_DIRS_GTK2=1
|
|
|
TARGET_DIRS_LIBRSVG=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -2114,8 +2070,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -2180,8 +2134,6 @@ TARGET_DIRS_PCAP=1
|
|
|
TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
|
TARGET_DIRS_ICONVENC=1
|
|
@@ -2307,8 +2259,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -2405,8 +2355,6 @@ TARGET_DIRS_LIBRSVG=1
|
|
|
TARGET_DIRS_FPGTK=1
|
|
|
TARGET_DIRS_XFORMS=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_IMLIB=1
|
|
|
TARGET_DIRS_OBJCRTL=1
|
|
@@ -2682,8 +2630,6 @@ TARGET_DIRS_ICONVENC=1
|
|
|
TARGET_DIRS_GMP=1
|
|
|
TARGET_DIRS_FCL-EXTRA=1
|
|
|
TARGET_DIRS_UNIVINT=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_OPENGLES=1
|
|
|
TARGET_DIRS_OBJCRTL=1
|
|
@@ -2772,8 +2718,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -2847,8 +2791,6 @@ TARGET_DIRS_GNOME1=1
|
|
|
TARGET_DIRS_GTK1=1
|
|
|
TARGET_DIRS_GTK2=1
|
|
|
TARGET_DIRS_LIBRSVG=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -2922,8 +2864,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -3045,8 +2985,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -3188,8 +3126,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -3262,8 +3198,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -3387,8 +3321,6 @@ TARGET_DIRS_LIBRSVG=1
|
|
|
TARGET_DIRS_FPGTK=1
|
|
|
TARGET_DIRS_XFORMS=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_IMLIB=1
|
|
|
TARGET_DIRS_OBJCRTL=1
|
|
@@ -3449,33 +3381,6 @@ TARGET_DIRS_BZIP2=1
|
|
|
TARGET_DIRS_HERMES=1
|
|
|
TARGET_DIRS_FPPKG=1
|
|
|
endif
|
|
|
-ifeq ($(FULL_TARGET),powerpc-wii)
|
|
|
-TARGET_DIRS_HASH=1
|
|
|
-TARGET_DIRS_PASJPEG=1
|
|
|
-TARGET_DIRS_PASZLIB=1
|
|
|
-TARGET_DIRS_FPMKUNIT=1
|
|
|
-TARGET_DIRS_FCL-XML=1
|
|
|
-TARGET_DIRS_FCL-BASE=1
|
|
|
-TARGET_DIRS_FCL-DB=1
|
|
|
-TARGET_DIRS_FCL-IMAGE=1
|
|
|
-TARGET_DIRS_FCL-NET=1
|
|
|
-TARGET_DIRS_FCL-PASSRC=1
|
|
|
-TARGET_DIRS_FCL-REGISTRY=1
|
|
|
-TARGET_DIRS_FCL-FPCUNIT=1
|
|
|
-TARGET_DIRS_FCL-JSON=1
|
|
|
-TARGET_DIRS_FCL-JS=1
|
|
|
-TARGET_DIRS_FCL-PROCESS=1
|
|
|
-TARGET_DIRS_UNZIP=1
|
|
|
-TARGET_DIRS_REGEXPR=1
|
|
|
-TARGET_DIRS_CHM=1
|
|
|
-TARGET_DIRS_FCL-RES=1
|
|
|
-TARGET_DIRS_LIBGD=1
|
|
|
-TARGET_DIRS_SYMBOLIC=1
|
|
|
-TARGET_DIRS_BZIP2=1
|
|
|
-TARGET_DIRS_HERMES=1
|
|
|
-TARGET_DIRS_FPPKG=1
|
|
|
-TARGET_DIRS_LIBOGCFPC=1
|
|
|
-endif
|
|
|
ifeq ($(FULL_TARGET),sparc-linux)
|
|
|
TARGET_DIRS_HASH=1
|
|
|
TARGET_DIRS_PASJPEG=1
|
|
@@ -3560,8 +3465,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -3634,8 +3537,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -3700,8 +3601,6 @@ TARGET_DIRS_PCAP=1
|
|
|
TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
|
TARGET_DIRS_ICONVENC=1
|
|
@@ -3818,8 +3717,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -3893,8 +3790,6 @@ TARGET_DIRS_GNOME1=1
|
|
|
TARGET_DIRS_GTK1=1
|
|
|
TARGET_DIRS_GTK2=1
|
|
|
TARGET_DIRS_LIBRSVG=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -3964,8 +3859,6 @@ TARGET_DIRS_PCAP=1
|
|
|
TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
|
TARGET_DIRS_ICONVENC=1
|
|
@@ -4036,8 +3929,6 @@ TARGET_DIRS_LIBRSVG=1
|
|
|
TARGET_DIRS_FPGTK=1
|
|
|
TARGET_DIRS_XFORMS=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_IMLIB=1
|
|
|
TARGET_DIRS_COCOAINT=1
|
|
@@ -4089,8 +3980,6 @@ TARGET_DIRS_FFTW=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_CDROM=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
|
TARGET_DIRS_FCL-EXTRA=1
|
|
@@ -4209,8 +4098,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -4301,8 +4188,6 @@ TARGET_DIRS_ICONVENC=1
|
|
|
TARGET_DIRS_GMP=1
|
|
|
TARGET_DIRS_FCL-EXTRA=1
|
|
|
TARGET_DIRS_UNIVINT=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_OPENGLES=1
|
|
|
TARGET_DIRS_OBJCRTL=1
|
|
@@ -4539,8 +4424,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -4613,8 +4496,6 @@ TARGET_DIRS_LIBRSVG=1
|
|
|
TARGET_DIRS_FPGTK=1
|
|
|
TARGET_DIRS_XFORMS=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_IMLIB=1
|
|
|
TARGET_DIRS_COCOAINT=1
|
|
@@ -4755,8 +4636,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -4874,8 +4753,6 @@ TARGET_DIRS_GGI=1
|
|
|
TARGET_DIRS_SDL=1
|
|
|
TARGET_DIRS_OPENSSL=1
|
|
|
TARGET_DIRS_GNOME1=1
|
|
|
-TARGET_DIRS_HTTPD13=1
|
|
|
-TARGET_DIRS_HTTPD20=1
|
|
|
TARGET_DIRS_HTTPD22=1
|
|
|
TARGET_DIRS_PXLIB=1
|
|
|
TARGET_DIRS_NUMLIB=1
|
|
@@ -8573,96 +8450,6 @@ gnome1:
|
|
|
$(MAKE) -C gnome1 all
|
|
|
.PHONY: gnome1_all gnome1_debug gnome1_smart gnome1_release gnome1_units gnome1_examples gnome1_shared gnome1_install gnome1_sourceinstall gnome1_exampleinstall gnome1_distinstall gnome1_zipinstall gnome1_zipsourceinstall gnome1_zipexampleinstall gnome1_zipdistinstall gnome1_clean gnome1_distclean gnome1_cleanall gnome1_info gnome1_makefiles gnome1
|
|
|
endif
|
|
|
-ifdef TARGET_DIRS_HTTPD13
|
|
|
-httpd13_all:
|
|
|
- $(MAKE) -C httpd13 all
|
|
|
-httpd13_debug:
|
|
|
- $(MAKE) -C httpd13 debug
|
|
|
-httpd13_smart:
|
|
|
- $(MAKE) -C httpd13 smart
|
|
|
-httpd13_release:
|
|
|
- $(MAKE) -C httpd13 release
|
|
|
-httpd13_units:
|
|
|
- $(MAKE) -C httpd13 units
|
|
|
-httpd13_examples:
|
|
|
- $(MAKE) -C httpd13 examples
|
|
|
-httpd13_shared:
|
|
|
- $(MAKE) -C httpd13 shared
|
|
|
-httpd13_install:
|
|
|
- $(MAKE) -C httpd13 install
|
|
|
-httpd13_sourceinstall:
|
|
|
- $(MAKE) -C httpd13 sourceinstall
|
|
|
-httpd13_exampleinstall:
|
|
|
- $(MAKE) -C httpd13 exampleinstall
|
|
|
-httpd13_distinstall:
|
|
|
- $(MAKE) -C httpd13 distinstall
|
|
|
-httpd13_zipinstall:
|
|
|
- $(MAKE) -C httpd13 zipinstall
|
|
|
-httpd13_zipsourceinstall:
|
|
|
- $(MAKE) -C httpd13 zipsourceinstall
|
|
|
-httpd13_zipexampleinstall:
|
|
|
- $(MAKE) -C httpd13 zipexampleinstall
|
|
|
-httpd13_zipdistinstall:
|
|
|
- $(MAKE) -C httpd13 zipdistinstall
|
|
|
-httpd13_clean:
|
|
|
- $(MAKE) -C httpd13 clean
|
|
|
-httpd13_distclean:
|
|
|
- $(MAKE) -C httpd13 distclean
|
|
|
-httpd13_cleanall:
|
|
|
- $(MAKE) -C httpd13 cleanall
|
|
|
-httpd13_info:
|
|
|
- $(MAKE) -C httpd13 info
|
|
|
-httpd13_makefiles:
|
|
|
- $(MAKE) -C httpd13 makefiles
|
|
|
-httpd13:
|
|
|
- $(MAKE) -C httpd13 all
|
|
|
-.PHONY: httpd13_all httpd13_debug httpd13_smart httpd13_release httpd13_units httpd13_examples httpd13_shared httpd13_install httpd13_sourceinstall httpd13_exampleinstall httpd13_distinstall httpd13_zipinstall httpd13_zipsourceinstall httpd13_zipexampleinstall httpd13_zipdistinstall httpd13_clean httpd13_distclean httpd13_cleanall httpd13_info httpd13_makefiles httpd13
|
|
|
-endif
|
|
|
-ifdef TARGET_DIRS_HTTPD20
|
|
|
-httpd20_all:
|
|
|
- $(MAKE) -C httpd20 all
|
|
|
-httpd20_debug:
|
|
|
- $(MAKE) -C httpd20 debug
|
|
|
-httpd20_smart:
|
|
|
- $(MAKE) -C httpd20 smart
|
|
|
-httpd20_release:
|
|
|
- $(MAKE) -C httpd20 release
|
|
|
-httpd20_units:
|
|
|
- $(MAKE) -C httpd20 units
|
|
|
-httpd20_examples:
|
|
|
- $(MAKE) -C httpd20 examples
|
|
|
-httpd20_shared:
|
|
|
- $(MAKE) -C httpd20 shared
|
|
|
-httpd20_install:
|
|
|
- $(MAKE) -C httpd20 install
|
|
|
-httpd20_sourceinstall:
|
|
|
- $(MAKE) -C httpd20 sourceinstall
|
|
|
-httpd20_exampleinstall:
|
|
|
- $(MAKE) -C httpd20 exampleinstall
|
|
|
-httpd20_distinstall:
|
|
|
- $(MAKE) -C httpd20 distinstall
|
|
|
-httpd20_zipinstall:
|
|
|
- $(MAKE) -C httpd20 zipinstall
|
|
|
-httpd20_zipsourceinstall:
|
|
|
- $(MAKE) -C httpd20 zipsourceinstall
|
|
|
-httpd20_zipexampleinstall:
|
|
|
- $(MAKE) -C httpd20 zipexampleinstall
|
|
|
-httpd20_zipdistinstall:
|
|
|
- $(MAKE) -C httpd20 zipdistinstall
|
|
|
-httpd20_clean:
|
|
|
- $(MAKE) -C httpd20 clean
|
|
|
-httpd20_distclean:
|
|
|
- $(MAKE) -C httpd20 distclean
|
|
|
-httpd20_cleanall:
|
|
|
- $(MAKE) -C httpd20 cleanall
|
|
|
-httpd20_info:
|
|
|
- $(MAKE) -C httpd20 info
|
|
|
-httpd20_makefiles:
|
|
|
- $(MAKE) -C httpd20 makefiles
|
|
|
-httpd20:
|
|
|
- $(MAKE) -C httpd20 all
|
|
|
-.PHONY: httpd20_all httpd20_debug httpd20_smart httpd20_release httpd20_units httpd20_examples httpd20_shared httpd20_install httpd20_sourceinstall httpd20_exampleinstall httpd20_distinstall httpd20_zipinstall httpd20_zipsourceinstall httpd20_zipexampleinstall httpd20_zipdistinstall httpd20_clean httpd20_distclean httpd20_cleanall httpd20_info httpd20_makefiles httpd20
|
|
|
-endif
|
|
|
ifdef TARGET_DIRS_HTTPD22
|
|
|
httpd22_all:
|
|
|
$(MAKE) -C httpd22 all
|
|
@@ -9608,51 +9395,6 @@ palmunits:
|
|
|
$(MAKE) -C palmunits all
|
|
|
.PHONY: palmunits_all palmunits_debug palmunits_smart palmunits_release palmunits_units palmunits_examples palmunits_shared palmunits_install palmunits_sourceinstall palmunits_exampleinstall palmunits_distinstall palmunits_zipinstall palmunits_zipsourceinstall palmunits_zipexampleinstall palmunits_zipdistinstall palmunits_clean palmunits_distclean palmunits_cleanall palmunits_info palmunits_makefiles palmunits
|
|
|
endif
|
|
|
-ifdef TARGET_DIRS_LIBOGCFPC
|
|
|
-libogcfpc_all:
|
|
|
- $(MAKE) -C libogcfpc all
|
|
|
-libogcfpc_debug:
|
|
|
- $(MAKE) -C libogcfpc debug
|
|
|
-libogcfpc_smart:
|
|
|
- $(MAKE) -C libogcfpc smart
|
|
|
-libogcfpc_release:
|
|
|
- $(MAKE) -C libogcfpc release
|
|
|
-libogcfpc_units:
|
|
|
- $(MAKE) -C libogcfpc units
|
|
|
-libogcfpc_examples:
|
|
|
- $(MAKE) -C libogcfpc examples
|
|
|
-libogcfpc_shared:
|
|
|
- $(MAKE) -C libogcfpc shared
|
|
|
-libogcfpc_install:
|
|
|
- $(MAKE) -C libogcfpc install
|
|
|
-libogcfpc_sourceinstall:
|
|
|
- $(MAKE) -C libogcfpc sourceinstall
|
|
|
-libogcfpc_exampleinstall:
|
|
|
- $(MAKE) -C libogcfpc exampleinstall
|
|
|
-libogcfpc_distinstall:
|
|
|
- $(MAKE) -C libogcfpc distinstall
|
|
|
-libogcfpc_zipinstall:
|
|
|
- $(MAKE) -C libogcfpc zipinstall
|
|
|
-libogcfpc_zipsourceinstall:
|
|
|
- $(MAKE) -C libogcfpc zipsourceinstall
|
|
|
-libogcfpc_zipexampleinstall:
|
|
|
- $(MAKE) -C libogcfpc zipexampleinstall
|
|
|
-libogcfpc_zipdistinstall:
|
|
|
- $(MAKE) -C libogcfpc zipdistinstall
|
|
|
-libogcfpc_clean:
|
|
|
- $(MAKE) -C libogcfpc clean
|
|
|
-libogcfpc_distclean:
|
|
|
- $(MAKE) -C libogcfpc distclean
|
|
|
-libogcfpc_cleanall:
|
|
|
- $(MAKE) -C libogcfpc cleanall
|
|
|
-libogcfpc_info:
|
|
|
- $(MAKE) -C libogcfpc info
|
|
|
-libogcfpc_makefiles:
|
|
|
- $(MAKE) -C libogcfpc makefiles
|
|
|
-libogcfpc:
|
|
|
- $(MAKE) -C libogcfpc all
|
|
|
-.PHONY: libogcfpc_all libogcfpc_debug libogcfpc_smart libogcfpc_release libogcfpc_units libogcfpc_examples libogcfpc_shared libogcfpc_install libogcfpc_sourceinstall libogcfpc_exampleinstall libogcfpc_distinstall libogcfpc_zipinstall libogcfpc_zipsourceinstall libogcfpc_zipexampleinstall libogcfpc_zipdistinstall libogcfpc_clean libogcfpc_distclean libogcfpc_cleanall libogcfpc_info libogcfpc_makefiles libogcfpc
|
|
|
-endif
|
|
|
all: $(addsuffix _all,$(TARGET_DIRS))
|
|
|
debug: $(addsuffix _debug,$(TARGET_DIRS))
|
|
|
smart: $(addsuffix _smart,$(TARGET_DIRS))
|