added fpcmacosall.pas till it is in FPC

git-svn-id: trunk@8418 -
This commit is contained in:
mattias 2006-01-03 08:08:56 +00:00
parent c1d3e4b31d
commit 02d9d81ee8
11 changed files with 207777 additions and 3 deletions

3
.gitattributes vendored
View File

@ -5,6 +5,8 @@ components/cgi/Makefile svneol=native#text/plain
components/cgi/Makefile.fpc svneol=native#text/plain
components/cgi/cgilaz.lpk svneol=native#text/pascal
components/cgi/cgimodules.pas svneol=native#text/pascal
components/cgi/ide/Makefile svneol=native#text/plain
components/cgi/ide/Makefile.fpc svneol=native#text/plain
components/cgi/ide/README.txt svneol=native#text/plain
components/cgi/ide/cgilazide.lpk svneol=native#text/pascal
components/cgi/ide/cgilazideintf.pas svneol=native#text/pascal
@ -1771,6 +1773,7 @@ lcl/interfaces/carbon/carbonwspairsplitter.pp svneol=native#text/pascal
lcl/interfaces/carbon/carbonwsspin.pp svneol=native#text/pascal
lcl/interfaces/carbon/carbonwsstdctrls.pp svneol=native#text/pascal
lcl/interfaces/carbon/carbonwstoolwin.pp svneol=native#text/pascal
lcl/interfaces/carbon/fpcmacosall.pas svneol=native#text/plain
lcl/interfaces/carbon/interfaces.pas svneol=native#text/pascal
lcl/interfaces/gnome/gnomeint.pp svneol=native#text/pascal
lcl/interfaces/gnome/gnomelclintf.inc svneol=native#text/pascal

View File

@ -1742,4 +1742,5 @@ bigidecomponents: all
$(MAKE) -C rtticontrols
$(MAKE) -C printers
$(MAKE) -C cgi
$(MAKE) -C cgi/ide
cleanlaz: clean

View File

@ -24,5 +24,6 @@ bigidecomponents: all
$(MAKE) -C rtticontrols
$(MAKE) -C printers
$(MAKE) -C cgi
$(MAKE) -C cgi/ide
cleanlaz: clean

2171
components/cgi/ide/Makefile Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,27 @@
# Makefile.fpc for CGILazIDE 0.0
[package]
name=cgilazide
version=0.0
[compiler]
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)/
unitdir=lib/i386-linux/ ../../../ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/ ../../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ ../../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ ../../../packager/units/$(CPU_TARGET)-$(OS_TARGET)/ ./
options=-gl
[target]
units=cgilazide.pas
[clean]
files=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) \
$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
[rules]
.PHONY: cleartarget all
cleartarget:
-$(DEL) $(COMPILER_UNITTARGETDIR)/cgilazide$(PPUEXT)
all: cleartarget $(COMPILER_UNITTARGETDIR) cgilazide$(PPUEXT)

View File

@ -3,15 +3,16 @@
<Package Version="2">
<Name Value="CGILazIDE"/>
<CompilerOptions>
<Version Value="2"/>
<Version Value="5"/>
<SearchPaths>
<UnitOutputDirectory Value="lib/"/>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)/"/>
</SearchPaths>
<CodeGeneration>
<Generate Value="Faster"/>
</CodeGeneration>
<Other>
<CompilerPath Value="$(CompPath)"/>
<CreateMakefileOnBuild Value="True"/>
</Other>
</CompilerOptions>
<Files Count="2">

View File

@ -260,6 +260,7 @@ endif
BIG_IDE_OPTIONS=-dBigIDE \
-Fu../components/rtticontrols/lib/$(CPU_TARGET)-$(OS_TARGET) \
-Fu../components/printers/lib/$(CPU_TARGET)-$(OS_TARGET) \
-Fu../components/cgi/ide/lib/$(CPU_TARGET)-$(OS_TARGET) \
-Fu../components/cgi/lib/$(CPU_TARGET)-$(OS_TARGET)
ifeq ($(FULL_TARGET),i386-linux)
override TARGET_PROGRAMS+=lazarus startlazarus

View File

@ -95,6 +95,7 @@ endif
BIG_IDE_OPTIONS=-dBigIDE \
-Fu../components/rtticontrols/lib/$(CPU_TARGET)-$(OS_TARGET) \
-Fu../components/printers/lib/$(CPU_TARGET)-$(OS_TARGET) \
-Fu../components/cgi/ide/lib/$(CPU_TARGET)-$(OS_TARGET) \
-Fu../components/cgi/lib/$(CPU_TARGET)-$(OS_TARGET)
#-----------------------------------------------------------------------------

View File

@ -57,7 +57,7 @@ uses
{$I staticpackages.inc}
{$ENDIF}
{$IFDEF BigIDE}
RunTimeTypeInfoControls, Printer4Lazarus, CGILaz,
RunTimeTypeInfoControls, Printer4Lazarus, CGILaz, CGILazIDE,
{$ENDIF}
MainBase;

File diff suppressed because it is too large Load Diff

View File

@ -1251,7 +1251,9 @@ begin
UnitPath:=APackage.CompilerOptions.GetUnitPath(false,false)+';.';
UnitOutputPath:=APackage.CompilerOptions.GetUnitOutPath(false,false);
DebugLn('TPkgManager.DoWriteMakefile ',APackage.Name,' abs UnitPath="',UnitPath,'"');
UnitPath:=ConvertLazarusToMakefileSearchPath(UnitPath);
DebugLn('TPkgManager.DoWriteMakefile ',APackage.Name,' rel UnitPath="',UnitPath,'"');
UnitOutputPath:=ConvertLazarusToMakefileDirectory(UnitOutputPath);
e:=LineEnding;