mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
14 lines
389 B
Bash
Executable file
14 lines
389 B
Bash
Executable file
#!/bin/sh
|
|
# Compiling components
|
|
|
|
# This script run from main build.sh script
|
|
# If you run it direct, set up $lazbuild first
|
|
|
|
basedir=$(pwd)
|
|
cd components
|
|
$lazbuild CmdLine/cmdbox.lpk $DC_ARCH
|
|
$lazbuild KASToolBar/kascomp.lpk $DC_ARCH
|
|
$lazbuild viewer/viewerpackage.lpk $DC_ARCH
|
|
$lazbuild gifanim/pkg_gifanim.lpk $DC_ARCH
|
|
$lazbuild ZVDateTimeCtrls/zvdatetimectrls.lpk $DC_ARCH
|
|
cd $basedir
|