mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
11 lines
286 B
Bash
Executable file
11 lines
286 B
Bash
Executable file
#!/bin/bash
|
|
# Compiling components
|
|
|
|
# This script run from _make.bat
|
|
# If you run it direct, set up $lazpath first
|
|
|
|
pushd components
|
|
$lazpath/lazbuild CmdLine/cmdbox.lpk $DC_ARCH
|
|
$lazpath/lazbuild KASToolBar/kascomp.lpk $DC_ARCH
|
|
$lazpath/lazbuild viewer/viewerpackage.lpk $DC_ARCH
|
|
popd
|