mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-12 10:59:20 +02:00
Adds makefiles
git-svn-id: trunk@33388 -
This commit is contained in:
parent
6282148a84
commit
d21a9a5ef8
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -5393,6 +5393,8 @@ lcl/interfaces/cocoa/cocoawsforms.pp svneol=native#text/plain
|
||||
lcl/interfaces/cocoa/cocoawsmenus.pas svneol=native#text/plain
|
||||
lcl/interfaces/cocoa/cocoawsstdctrls.pp svneol=native#text/plain
|
||||
lcl/interfaces/cocoa/interfaces.pas svneol=native#text/plain
|
||||
lcl/interfaces/customdrawn/Makefile svneol=native#text/plain
|
||||
lcl/interfaces/customdrawn/Makefile.fpc svneol=native#text/plain
|
||||
lcl/interfaces/customdrawn/alllclintfunits.pas svneol=native#text/plain
|
||||
lcl/interfaces/customdrawn/customdrawndefines.inc svneol=native#text/pascal
|
||||
lcl/interfaces/customdrawn/customdrawnint.pas svneol=native#text/plain
|
||||
|
2606
lcl/interfaces/customdrawn/Makefile
Normal file
2606
lcl/interfaces/customdrawn/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
35
lcl/interfaces/customdrawn/Makefile.fpc
Normal file
35
lcl/interfaces/customdrawn/Makefile.fpc
Normal file
@ -0,0 +1,35 @@
|
||||
[package]
|
||||
main=lcl
|
||||
|
||||
[require]
|
||||
packages=rtl
|
||||
|
||||
[target]
|
||||
units=interfaces
|
||||
|
||||
[compiler]
|
||||
options=-gl
|
||||
unitdir=../../units/$(CPU_TARGET)-$(OS_TARGET) ../../../components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) .
|
||||
unittargetdir=../../units/$(CPU_TARGET)-$(OS_TARGET)/customdrawn
|
||||
|
||||
[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))
|
||||
|
||||
[rules]
|
||||
.PHONY: cleartarget compiled all
|
||||
|
||||
cleartarget:
|
||||
-$(DEL) $(COMPILER_UNITTARGETDIR)/interfaces$(PPUEXT) \
|
||||
$(COMPILER_UNITTARGETDIR)/interfaces$(OEXT)
|
||||
|
||||
compiled:
|
||||
$(COPY) Makefile.compiled $(COMPILER_UNITTARGETDIR)/LCL.compiled
|
||||
|
||||
all: cleartarget $(COMPILER_UNITTARGETDIR) interfaces$(PPUEXT) compiled
|
||||
|
Loading…
Reference in New Issue
Block a user