mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-03 21:38:21 +02:00
36 lines
517 B
Makefile
36 lines
517 B
Makefile
# $Id$
|
|
#
|
|
# Makefile.fpc for Lazarus for Free Pascal
|
|
#
|
|
# test
|
|
|
|
[package]
|
|
name=lazarus-qt
|
|
version=0.8a
|
|
|
|
[require]
|
|
packages=rtl fcl
|
|
|
|
[target]
|
|
units=interfaces
|
|
|
|
[compiler]
|
|
options=-gl
|
|
unittargetdir=../../units/qt
|
|
unitdir=$(COMPILER_UNITTARGETDIR) ../../units
|
|
includedir=.
|
|
|
|
[prerules]
|
|
DIST_DESTDIR=$(BASEDIR)/../../../dist
|
|
|
|
[rules]
|
|
.PHONY: all makefile makefiles
|
|
|
|
all:
|
|
$(MAKE) --assume-new=interfaces.pp interfaces$(PPUEXT)
|
|
|
|
makefile: Makefile.fpc
|
|
-$(FPCMAKE) -w
|
|
|
|
makefiles: makefile
|