mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 10:29:24 +02:00

+ Added CreateCompatibeleBitamp function + Updated TWinControl.WMPaint + Added some checks to avoid gtk/gdk errors - Removed no fixed warning from GetDC - Removed some output git-svn-id: trunk@34 -
37 lines
561 B
Makefile
37 lines
561 B
Makefile
#
|
|
# Makefile.fpc for Lazarus for Free Pascal
|
|
#
|
|
|
|
[targets]
|
|
programs=allunits
|
|
|
|
[require]
|
|
packages=fcl gtk
|
|
|
|
[clean]
|
|
units=$(basename $(wildcard $(UNITTARGETDIR)/*$(PPUEXT)))
|
|
files=$(wildcard $(UNITTARGETDIR)/*$(OEXT))
|
|
|
|
[dirs]
|
|
unittargetdir=./units
|
|
unitdir=$(UNITTARGETDIR) . ./interfaces/$(LCLPLATFORM)
|
|
incdir=./include ./interfaces/$(LCLPLATFORM)
|
|
|
|
[install]
|
|
|
|
[libs]
|
|
|
|
[presettings]
|
|
ifndef LCLPLATFORM
|
|
LCLPLATFORM=gtk
|
|
endif
|
|
|
|
[defaults]
|
|
|
|
[rules]
|
|
cleartarget:
|
|
-$(DEL) allunits$(EXEEXT)
|
|
|
|
all: cleartarget allunits$(EXEEXT)
|
|
-$(DEL) allunits$(EXEEXT)
|