mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-18 06:06:01 -06:00
17 lines
237 B
Text
17 lines
237 B
Text
if [ ! -f /usr/lib/libdl.so ]
|
|
then
|
|
cd uppsrc
|
|
sed -e s/-ldl//g Makefile >Makefile2
|
|
rm Makefile
|
|
mv Makefile2 Makefile
|
|
cd ..
|
|
fi
|
|
|
|
if which gmake
|
|
then
|
|
gmake -C uppsrc
|
|
else
|
|
make -C uppsrc
|
|
fi
|
|
|
|
cp uppsrc/ide.out ./theide
|