/components/tachart/Makefile
http://github.com/graemeg/lazarus · Makefile · 3151 lines · 3148 code · 0 blank · 3 comment · 9 complexity · ae11dcb6929f773893029dd395214da9 MD5 · raw file
Large files are truncated click here to view the full file
- #
- # Don't edit, this file is generated by FPCMake Version 2.0.0 [2015-09-05 rev 31523]
- #
- 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 i386-android i386-aros 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 powerpc-aix sparc-linux sparc-netbsd sparc-solaris sparc-embedded x86_64-linux x86_64-freebsd x86_64-netbsd x86_64-solaris x86_64-openbsd x86_64-darwin x86_64-win64 x86_64-embedded x86_64-iphonesim x86_64-aros x86_64-dragonfly arm-linux arm-palmos arm-darwin arm-wince arm-gba arm-nds arm-embedded arm-symbian arm-android powerpc64-linux powerpc64-darwin powerpc64-embedded powerpc64-aix avr-embedded armeb-linux armeb-embedded mips-linux mipsel-linux mipsel-embedded mipsel-android jvm-java jvm-android i8086-msdos i8086-win16 aarch64-linux aarch64-darwin
- BSDs = freebsd netbsd openbsd darwin dragonfly
- UNIXs = linux $(BSDs) solaris qnx haiku aix
- LIMIT83fs = go32v2 os2 emx watcom msdos win16
- OSNeedsComspecToRunBatch = go32v2 watcom
- FORCE:
- .PHONY: FORCE
- override PATH:=$(patsubst %/,%,$(subst \,/,$(PATH)))
- ifneq ($(findstring darwin,$(OSTYPE)),)
- inUnix=1 #darwin
- SEARCHPATH:=$(filter-out .,$(subst :, ,$(PATH)))
- else
- ifeq ($(findstring ;,$(PATH)),)
- inUnix=1
- SEARCHPATH:=$(filter-out .,$(subst :, ,$(PATH)))
- else
- SEARCHPATH:=$(subst ;, ,$(PATH))
- endif
- endif
- SEARCHPATH+=$(patsubst %/,%,$(subst \,/,$(dir $(MAKE))))
- PWD:=$(strip $(wildcard $(addsuffix /pwd.exe,$(SEARCHPATH))))
- ifeq ($(PWD),)
- PWD:=$(strip $(wildcard $(addsuffix /pwd,$(SEARCHPATH))))
- ifeq ($(PWD),)
- $(error You need the GNU utils package to use this Makefile)
- else
- PWD:=$(firstword $(PWD))
- SRCEXEEXT=
- endif
- else
- PWD:=$(firstword $(PWD))
- SRCEXEEXT=.exe
- endif
- ifndef inUnix
- ifeq ($(OS),Windows_NT)
- inWinNT=1
- else
- ifdef OS2_SHELL
- inOS2=1
- endif
- endif
- else
- ifneq ($(findstring cygdrive,$(PATH)),)
- inCygWin=1
- endif
- endif
- ifdef inUnix
- SRCBATCHEXT=.sh
- else
- ifdef inOS2
- SRCBATCHEXT=.cmd
- else
- SRCBATCHEXT=.bat
- endif
- endif
- ifdef COMSPEC
- ifneq ($(findstring $(OS_SOURCE),$(OSNeedsComspecToRunBatch)),)
- ifndef RUNBATCH
- RUNBATCH=$(COMSPEC) /C
- endif
- endif
- endif
- ifdef inUnix
- PATHSEP=/
- else
- PATHSEP:=$(subst /,\,/)
- ifdef inCygWin
- PATHSEP=/
- endif
- endif
- ifdef PWD
- BASEDIR:=$(subst \,/,$(shell $(PWD)))
- ifdef inCygWin
- ifneq ($(findstring /cygdrive/,$(BASEDIR)),)
- BASENODIR:=$(patsubst /cygdrive%,%,$(BASEDIR))
- BASEDRIVE:=$(firstword $(subst /, ,$(BASENODIR)))
- BASEDIR:=$(subst /cygdrive/$(BASEDRIVE)/,$(BASEDRIVE):/,$(BASEDIR))
- endif
- endif
- else
- BASEDIR=.
- endif
- ifdef inOS2
- ifndef ECHO
- ECHO:=$(strip $(wildcard $(addsuffix /gecho$(SRCEXEEXT),$(SEARCHPATH))))
- ifeq ($(ECHO),)
- ECHO:=$(strip $(wildcard $(addsuffix /echo$(SRCEXEEXT),$(SEARCHPATH))))
- ifeq ($(ECHO),)
- ECHO=echo
- else
- ECHO:=$(firstword $(ECHO))
- endif
- else
- ECHO:=$(firstword $(ECHO))
- endif
- endif
- export ECHO
- endif
- ifndef FPC
- ifdef PP
- FPC=$(PP)
- endif
- endif
- ifndef FPC
- FPCPROG:=$(strip $(wildcard $(addsuffix /fpc$(SRCEXEEXT),$(SEARCHPATH))))
- ifneq ($(FPCPROG),)
- FPCPROG:=$(firstword $(FPCPROG))
- ifneq ($(CPU_TARGET),)
- FPC:=$(shell $(FPCPROG) -P$(CPU_TARGET) -PB)
- else
- FPC:=$(shell $(FPCPROG) -PB)
- endif
- ifneq ($(findstring Error,$(FPC)),)
- override FPC=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
- else
- ifeq ($(strip $(wildcard $(FPC))),)
- FPC:=$(firstword $(FPCPROG))
- endif
- endif
- else
- override FPC=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
- endif
- endif
- override FPC:=$(subst $(SRCEXEEXT),,$(FPC))
- override FPC:=$(subst \,/,$(FPC))$(SRCEXEEXT)
- FOUNDFPC:=$(strip $(wildcard $(FPC)))
- ifeq ($(FOUNDFPC),)
- FOUNDFPC=$(strip $(wildcard $(addsuffix /$(FPC),$(SEARCHPATH))))
- ifeq ($(FOUNDFPC),)
- $(error Compiler $(FPC) not found)
- endif
- endif
- ifndef FPC_COMPILERINFO
- FPC_COMPILERINFO:=$(shell $(FPC) -iVSPTPSOTO)
- endif
- ifndef FPC_VERSION
- FPC_VERSION:=$(word 1,$(FPC_COMPILERINFO))
- endif
- export FPC FPC_VERSION FPC_COMPILERINFO
- unexport CHECKDEPEND ALLDEPENDENCIES
- ifndef CPU_TARGET
- ifdef CPU_TARGET_DEFAULT
- CPU_TARGET=$(CPU_TARGET_DEFAULT)
- endif
- endif
- ifndef OS_TARGET
- ifdef OS_TARGET_DEFAULT
- OS_TARGET=$(OS_TARGET_DEFAULT)
- endif
- endif
- ifndef CPU_SOURCE
- CPU_SOURCE:=$(word 2,$(FPC_COMPILERINFO))
- endif
- ifndef CPU_TARGET
- CPU_TARGET:=$(word 3,$(FPC_COMPILERINFO))
- endif
- ifndef OS_SOURCE
- OS_SOURCE:=$(word 4,$(FPC_COMPILERINFO))
- endif
- ifndef OS_TARGET
- OS_TARGET:=$(word 5,$(FPC_COMPILERINFO))
- endif
- FULL_TARGET=$(CPU_TARGET)-$(OS_TARGET)
- FULL_SOURCE=$(CPU_SOURCE)-$(OS_SOURCE)
- ifeq ($(CPU_TARGET),armeb)
- ARCH=arm
- override FPCOPT+=-Cb
- else
- ifeq ($(CPU_TARGET),armel)
- ARCH=arm
- override FPCOPT+=-CaEABI
- else
- ARCH=$(CPU_TARGET)
- endif
- endif
- ifeq ($(FULL_TARGET),arm-embedded)
- ifeq ($(SUBARCH),)
- $(error When compiling for arm-embedded, a sub-architecture (e.g. SUBARCH=armv4t or SUBARCH=armv7m) must be defined)
- endif
- override FPCOPT+=-Cp$(SUBARCH)
- endif
- ifeq ($(FULL_TARGET),avr-embedded)
- ifeq ($(SUBARCH),)
- $(error When compiling for avr-embedded, a sub-architecture (e.g. SUBARCH=avr25 or SUBARCH=avr35) must be defined)
- endif
- override FPCOPT+=-Cp$(SUBARCH)
- endif
- ifeq ($(FULL_TARGET),mipsel-embedded)
- ifeq ($(SUBARCH),)
- $(error When compiling for mipsel-embedded, a sub-architecture (e.g. SUBARCH=pic32mx) must be defined)
- endif
- override FPCOPT+=-Cp$(SUBARCH)
- endif
- ifneq ($(findstring $(OS_SOURCE),$(LIMIT83fs)),)
- TARGETSUFFIX=$(OS_TARGET)
- SOURCESUFFIX=$(OS_SOURCE)
- else
- ifneq ($(findstring $(OS_TARGET),$(LIMIT83fs)),)
- TARGETSUFFIX=$(OS_TARGET)
- else
- TARGETSUFFIX=$(FULL_TARGET)
- endif
- SOURCESUFFIX=$(FULL_SOURCE)
- endif
- ifneq ($(FULL_TARGET),$(FULL_SOURCE))
- CROSSCOMPILE=1
- endif
- ifeq ($(findstring makefile,$(MAKECMDGOALS)),)
- ifeq ($(findstring $(FULL_TARGET),$(MAKEFILETARGETS)),)
- $(error The Makefile doesn't support target $(FULL_TARGET), please run fpcmake first)
- endif
- endif
- ifneq ($(findstring $(OS_TARGET),$(BSDs)),)
- BSDhier=1
- endif
- ifeq ($(OS_TARGET),linux)
- linuxHier=1
- endif
- ifndef CROSSCOMPILE
- BUILDFULLNATIVE=1
- export BUILDFULLNATIVE
- endif
- ifdef BUILDFULLNATIVE
- BUILDNATIVE=1
- export BUILDNATIVE
- endif
- export OS_TARGET OS_SOURCE ARCH CPU_TARGET CPU_SOURCE FULL_TARGET FULL_SOURCE TARGETSUFFIX SOURCESUFFIX CROSSCOMPILE
- ifdef FPCDIR
- override FPCDIR:=$(subst \,/,$(FPCDIR))
- ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
- override FPCDIR=wrong
- endif
- else
- override FPCDIR=wrong
- endif
- ifdef DEFAULT_FPCDIR
- ifeq ($(FPCDIR),wrong)
- override FPCDIR:=$(subst \,/,$(DEFAULT_FPCDIR))
- ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
- override FPCDIR=wrong
- endif
- endif
- endif
- ifeq ($(FPCDIR),wrong)
- ifdef inUnix
- override FPCDIR=/usr/local/lib/fpc/$(FPC_VERSION)
- ifeq ($(wildcard $(FPCDIR)/units),)
- override FPCDIR=/usr/lib/fpc/$(FPC_VERSION)
- endif
- else
- override FPCDIR:=$(subst /$(FPC),,$(firstword $(strip $(wildcard $(addsuffix /$(FPC),$(SEARCHPATH))))))
- override FPCDIR:=$(FPCDIR)/..
- ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
- override FPCDIR:=$(FPCDIR)/..
- ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
- override FPCDIR:=$(BASEDIR)
- ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
- override FPCDIR=c:/pp
- endif
- endif
- endif
- endif
- endif
- ifndef CROSSBINDIR
- CROSSBINDIR:=$(wildcard $(FPCDIR)/bin/$(TARGETSUFFIX))
- endif
- ifneq ($(findstring $(OS_TARGET),darwin iphonesim),)
- ifeq ($(OS_SOURCE),darwin)
- DARWIN2DARWIN=1
- endif
- endif
- ifndef BINUTILSPREFIX
- ifndef CROSSBINDIR
- ifdef CROSSCOMPILE
- ifneq ($(OS_TARGET),msdos)
- ifndef DARWIN2DARWIN
- ifneq ($(CPU_TARGET),jvm)
- BINUTILSPREFIX=$(CPU_TARGET)-$(OS_TARGET)-
- ifeq ($(OS_TARGET),android)
- ifeq ($(CPU_TARGET),arm)
- BINUTILSPREFIX=arm-linux-androideabi-
- else
- ifeq ($(CPU_TARGET),i386)
- BINUTILSPREFIX=i686-linux-android-
- else
- ifeq ($(CPU_TARGET),mipsel)
- BINUTILSPREFIX=mipsel-linux-android-
- endif
- endif
- endif
- endif
- endif
- endif
- else
- BINUTILSPREFIX=$(OS_TARGET)-
- endif
- endif
- endif
- endif
- UNITSDIR:=$(wildcard $(FPCDIR)/units/$(TARGETSUFFIX))
- 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)))),)
- FPCPROG:=$(strip $(wildcard $(addsuffix /fpc$(SRCEXEEXT),$(SEARCHPATH))))
- ifneq ($(FPCPROG),)
- FPCPROG:=$(firstword $(FPCPROG))
- FPCFPMAKE:=$(shell $(FPCPROG) -PB)
- ifeq ($(strip $(wildcard $(FPCFPMAKE))),)
- FPCFPMAKE:=$(firstword $(FPCPROG))
- endif
- else
- override FPCFPMAKE=$(firstword $(strip $(wildcard $(addsuffix /ppc386$(SRCEXEEXT),$(SEARCHPATH)))))
- endif
- else
- FPCFPMAKE=$(strip $(wildcard $(addsuffix /compiler/ppc$(SRCEXEEXT),$(FPCDIR))))
- FPMAKE_SKIP_CONFIG=-n
- export FPCFPMAKE
- export FPMAKE_SKIP_CONFIG
- endif
- else
- FPMAKE_SKIP_CONFIG=-n
- FPCFPMAKE=$(FPC)
- endif
- endif
- override PACKAGE_NAME=tachartlazaruspkg
- override PACKAGE_VERSION=1.0
- ifndef LCL_PLATFORM
- ifeq ($(OS_TARGET),win32)
- LCL_PLATFORM=win32
- else
- ifeq ($(OS_TARGET),win64)
- LCL_PLATFORM=win32
- else
- ifeq ($(OS_TARGET),darwin)
- LCL_PLATFORM=carbon
- else
- LCL_PLATFORM=gtk2
- endif
- endif
- endif
- endif
- export LCL_PLATFORM
- DBG_OPTIONS=
- ifeq ($(OS_TARGET),darwin)
- DBG_OPTIONS=-gw
- endif
- ifeq ($(FULL_TARGET),i386-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-go32v2)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-win32)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-os2)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-freebsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-beos)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-haiku)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-netbsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-solaris)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-qnx)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-netware)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-openbsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-wdosx)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-darwin)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-emx)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-watcom)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-netwlibc)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-wince)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-symbian)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-nativent)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-iphonesim)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-android)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-aros)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),m68k-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),m68k-freebsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),m68k-netbsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),m68k-amiga)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),m68k-atari)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),m68k-openbsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),m68k-palmos)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),m68k-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc-netbsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc-amiga)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc-macos)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc-darwin)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc-morphos)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc-wii)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc-aix)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),sparc-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),sparc-netbsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),sparc-solaris)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),sparc-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-freebsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-netbsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-solaris)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-openbsd)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-darwin)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-win64)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-iphonesim)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-aros)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),x86_64-dragonfly)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),arm-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),arm-palmos)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),arm-darwin)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),arm-wince)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),arm-gba)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),arm-nds)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),arm-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),arm-symbian)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),arm-android)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc64-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc64-darwin)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc64-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),powerpc64-aix)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),avr-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),armeb-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),armeb-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),mips-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),mipsel-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),mipsel-embedded)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),mipsel-android)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),jvm-java)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),jvm-android)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i8086-msdos)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i8086-win16)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),aarch64-linux)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),aarch64-darwin)
- override TARGET_UNITS+=tachartlazaruspkg.pas
- endif
- ifeq ($(FULL_TARGET),i386-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-go32v2)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-win32)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-os2)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-freebsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-beos)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-haiku)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-netbsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-solaris)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-qnx)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-netware)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-openbsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-wdosx)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-darwin)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-emx)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-watcom)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-netwlibc)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-wince)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-symbian)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-nativent)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-iphonesim)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-android)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i386-aros)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),m68k-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),m68k-freebsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),m68k-netbsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),m68k-amiga)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),m68k-atari)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),m68k-openbsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),m68k-palmos)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),m68k-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc-netbsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc-amiga)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc-macos)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc-darwin)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc-morphos)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc-wii)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc-aix)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),sparc-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),sparc-netbsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),sparc-solaris)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),sparc-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-freebsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-netbsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-solaris)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-openbsd)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-darwin)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-win64)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-iphonesim)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-aros)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),x86_64-dragonfly)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),arm-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),arm-palmos)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),arm-darwin)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),arm-wince)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),arm-gba)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),arm-nds)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),arm-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),arm-symbian)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),arm-android)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc64-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc64-darwin)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc64-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),powerpc64-aix)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),avr-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),armeb-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),armeb-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),mips-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),mipsel-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),mipsel-embedded)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),mipsel-android)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),jvm-java)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),jvm-android)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i8086-msdos)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),i8086-win16)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),aarch64-linux)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR)/*.res) $(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) $(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
- endif
- ifeq ($(FULL_TARGET),aarch64-darwin)
- override CLEAN_FILES+=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) $(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) $(wildcard $(COMPILER_UNITTARGETDIR…