mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 10:58:16 +02:00
GDBMIDebugger: prepare new package
git-svn-id: trunk@44101 -
This commit is contained in:
parent
180211b187
commit
7b45286e2d
5
.gitattributes
vendored
5
.gitattributes
vendored
@ -2001,6 +2001,11 @@ components/lazcontrols/listfilteredit.pas svneol=native#text/plain
|
||||
components/lazcontrols/lvlgraphctrl.pas svneol=native#text/plain
|
||||
components/lazcontrols/shortpathedit.pas svneol=native#text/plain
|
||||
components/lazcontrols/treefilteredit.pas svneol=native#text/plain
|
||||
components/lazdebuggergdbmi/Makefile svneol=native#text/plain
|
||||
components/lazdebuggergdbmi/Makefile.compiled svneol=native#text/plain
|
||||
components/lazdebuggergdbmi/Makefile.fpc svneol=native#text/plain
|
||||
components/lazdebuggergdbmi/lazdebuggergdbmi.lpk svneol=native#text/plain
|
||||
components/lazdebuggergdbmi/lazdebuggergdbmi.pas svneol=native#text/pascal
|
||||
components/lazreport/doc/contributors.txt svneol=native#text/plain
|
||||
components/lazreport/doc/fr_eng.odt -text
|
||||
components/lazreport/doc/fr_eng.pdf -text
|
||||
|
2719
components/lazdebuggergdbmi/Makefile
Normal file
2719
components/lazdebuggergdbmi/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
5
components/lazdebuggergdbmi/Makefile.compiled
Normal file
5
components/lazdebuggergdbmi/Makefile.compiled
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<Makefile Value="2"/>
|
||||
<Params Value=" -Fu../../packager/units/$(CPU_TARGET)-$(OS_TARGET);. -MObjFPC -Scghi -O1 -g -gl -vewnhi -l lazdebuggergdbmi.pas"/>
|
||||
</CONFIG>
|
55
components/lazdebuggergdbmi/Makefile.fpc
Normal file
55
components/lazdebuggergdbmi/Makefile.fpc
Normal file
@ -0,0 +1,55 @@
|
||||
# File generated automatically by Lazarus Package Manager
|
||||
#
|
||||
# Makefile.fpc for LazDebuggerGdbmi 0.0
|
||||
#
|
||||
# This file was generated on 16/02/2014
|
||||
|
||||
[package]
|
||||
name=lazdebuggergdbmi
|
||||
version=0.0
|
||||
|
||||
[compiler]
|
||||
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)
|
||||
unitdir=../../packager/units/$(CPU_TARGET)-$(OS_TARGET) .
|
||||
options= -MObjFPC -Scghi -O1 -g -gl -vewnhi -l
|
||||
|
||||
[target]
|
||||
units=lazdebuggergdbmi.pas
|
||||
|
||||
[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))
|
||||
[prerules]
|
||||
# LCL Platform
|
||||
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
|
||||
|
||||
[rules]
|
||||
.PHONY: cleartarget compiled all
|
||||
|
||||
cleartarget:
|
||||
-$(DEL) $(COMPILER_UNITTARGETDIR)/lazdebuggergdbmi$(PPUEXT)
|
||||
|
||||
compiled:
|
||||
$(CPPROG) -f Makefile.compiled $(COMPILER_UNITTARGETDIR)/LazDebuggerGdbmi.compiled
|
||||
|
||||
all: cleartarget $(COMPILER_UNITTARGETDIR) lazdebuggergdbmi$(PPUEXT) compiled
|
32
components/lazdebuggergdbmi/lazdebuggergdbmi.lpk
Normal file
32
components/lazdebuggergdbmi/lazdebuggergdbmi.lpk
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<Package Version="4">
|
||||
<PathDelim Value="\"/>
|
||||
<Name Value="LazDebuggerGdbmi"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\"/>
|
||||
</SearchPaths>
|
||||
<Other>
|
||||
<CompilerMessages>
|
||||
<MsgFileName Value=""/>
|
||||
</CompilerMessages>
|
||||
<CompilerPath Value="$(CompPath)"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<Type Value="RunAndDesignTime"/>
|
||||
<RequiredPkgs Count="1">
|
||||
<Item1>
|
||||
<PackageName Value="FCL"/>
|
||||
</Item1>
|
||||
</RequiredPkgs>
|
||||
<UsageOptions>
|
||||
<UnitPath Value="$(PkgOutDir)"/>
|
||||
</UsageOptions>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
</PublishOptions>
|
||||
</Package>
|
||||
</CONFIG>
|
20
components/lazdebuggergdbmi/lazdebuggergdbmi.pas
Normal file
20
components/lazdebuggergdbmi/lazdebuggergdbmi.pas
Normal file
@ -0,0 +1,20 @@
|
||||
{ This file was automatically created by Lazarus. Do not edit!
|
||||
This source is only used to compile and install the package.
|
||||
}
|
||||
|
||||
unit LazDebuggerGdbmi;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterPackage('LazDebuggerGdbmi', @Register);
|
||||
end.
|
Loading…
Reference in New Issue
Block a user