mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 18:58:04 +02:00
11 lines
176 B
Bash
Executable File
11 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
cd $1
|
|
if [ -n "$FPCCfg" ]; then
|
|
MAKEOPTS=" -n @$FPCCfg"
|
|
fi
|
|
make bigide OPT="$MAKEOPTS" USESVN2REVISIONINC=0
|
|
strip lazarus
|
|
strip startlazarus
|
|
strip lazbuild
|
|
|