mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
12 lines
317 B
Bash
Executable file
12 lines
317 B
Bash
Executable file
#!/bin/bash
|
|
# Compiling components
|
|
|
|
# This script run from main build.sh script
|
|
# If you run it direct, set up $lazbuild first
|
|
|
|
pushd 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
|
|
popd
|