mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-18 06:29:35 +02:00
onlinepackagemanager: added makefiles
git-svn-id: trunk@58116 -
This commit is contained in:
parent
cd2840c6d6
commit
6a51fc04c0
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -3518,6 +3518,9 @@ components/multithreadprocs/mtprocs.pas svneol=native#text/plain
|
||||
components/multithreadprocs/mtputils.pas svneol=native#text/plain
|
||||
components/multithreadprocs/multithreadprocslaz.lpk svneol=native#text/plain
|
||||
components/multithreadprocs/multithreadprocslaz.pas svneol=native#text/plain
|
||||
components/onlinepackagemanager/Makefile svneol=native#text/plain
|
||||
components/onlinepackagemanager/Makefile.compiled svneol=native#text/plain
|
||||
components/onlinepackagemanager/Makefile.fpc svneol=native#text/plain
|
||||
components/onlinepackagemanager/fpcmod/opkman_httpclient.pas svneol=native#text/pascal
|
||||
components/onlinepackagemanager/fpcmod/opkman_zip.pas svneol=native#text/pascal
|
||||
components/onlinepackagemanager/images/1license.txt svneol=native#text/plain
|
||||
|
3469
components/onlinepackagemanager/Makefile
Normal file
3469
components/onlinepackagemanager/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
5
components/onlinepackagemanager/Makefile.compiled
Normal file
5
components/onlinepackagemanager/Makefile.compiled
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<Makefile Value="2"/>
|
||||
<Params Value=" -Fuvst;vst/units/$(LCL_PLATFORM);fpcmod;frames;../../packager/units/$(CPU_TARGET)-$(OS_TARGET);../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET);../../lcl/units/$(CPU_TARGET)-$(OS_TARGET);../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM);../lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM);../lclextensions/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM);../ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM);../virtualtreeview/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM);. -Fivst/include/intf/$(LCL_PLATFORM);vst/include/$(LCL_PLATFORM) -MObjFPC -Scghi -O1 -g -gl -l -vewnhibq -vm5024 -dLCL -dLCL$(LCL_PLATFORM) onlinepackagemanager.pas"/>
|
||||
</CONFIG>
|
65
components/onlinepackagemanager/Makefile.fpc
Normal file
65
components/onlinepackagemanager/Makefile.fpc
Normal file
@ -0,0 +1,65 @@
|
||||
# File generated automatically by Lazarus Package Manager
|
||||
#
|
||||
# Makefile.fpc for OnlinePackageManager 1.0.1.2
|
||||
#
|
||||
# This file was generated on 04.06.2018
|
||||
|
||||
[package]
|
||||
name=onlinepackagemanager
|
||||
version=1.0.1.2
|
||||
|
||||
[compiler]
|
||||
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)
|
||||
unitdir=vst vst/units/$(LCL_PLATFORM) fpcmod frames ../../packager/units/$(CPU_TARGET)-$(OS_TARGET) ../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET) ../../lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ../lazcontrols/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ../lclextensions/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM) ../ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ../virtualtreeview/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM) .
|
||||
includedir=vst/include/intf/$(LCL_PLATFORM) vst/include/$(LCL_PLATFORM)
|
||||
options= -MObjFPC -Scghi -O1 -g -gl -l -vewnhibq -vm5024 -dLCL -dLCL$(LCL_PLATFORM) $(DBG_OPTIONS)
|
||||
|
||||
[target]
|
||||
units=onlinepackagemanager.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
|
||||
|
||||
DBG_OPTIONS=
|
||||
ifeq ($(OS_TARGET),darwin)
|
||||
DBG_OPTIONS=-gw
|
||||
endif
|
||||
|
||||
[rules]
|
||||
.PHONY: cleartarget compiled all
|
||||
|
||||
cleartarget:
|
||||
-$(DEL) $(COMPILER_UNITTARGETDIR)/onlinepackagemanager$(PPUEXT)
|
||||
|
||||
compiled:
|
||||
$(CPPROG) -f Makefile.compiled $(COMPILER_UNITTARGETDIR)/OnlinePackageManager.compiled
|
||||
|
||||
all: cleartarget $(COMPILER_UNITTARGETDIR) onlinepackagemanager$(PPUEXT) compiled
|
||||
|
||||
distclean: clean
|
||||
${DELTREE} lib/*
|
Loading…
Reference in New Issue
Block a user