mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-22 22:02:34 -06:00
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
if which pkg-config
|
|
then
|
|
sed -e "s@-I((INCLUDES))@`pkg-config --cflags-only-I gtk+-2.0`@g" uppsrc/Makefile.in >uppsrc/Makefile
|
|
sed -e "s@-I((INCLUDES))@`pkg-config --cflags-only-I gtk+-2.0`@g" uppsrc/uMakefile.in >uppsrc/uMakefile
|
|
sed -e "s@((INCLUDES))@`pkg-config --cflags-only-I gtk+-2.0|sed -e s/-I//g -e \"s/ /;/g\"`@g" GCC.bm.in >GCC.bm
|
|
sed -e "s@((INCLUDES))@`pkg-config --cflags-only-I gtk+-2.0|sed -e s/-I//g -e \"s/ /;/g\"`@g" CLANG.bm.in >CLANG.bm
|
|
else
|
|
sed -e "s@((INCLUDES))@@g" uppsrc/Makefile.in >uppsrc/Makefile
|
|
sed -e "s@((INCLUDES))@@g" uppsrc/uMakefile.in >uppsrc/uMakefile
|
|
sed -e "s@((INCLUDES))@@g" GCC.bm.in >GCC.bm
|
|
sed -e "s@((INCLUDES))@@g" CLANG.bm.in >CLANG.bm
|
|
fi
|
|
|
|
if [ ! -f /usr/lib/libdl.so ]
|
|
then
|
|
cd uppsrc
|
|
|
|
sed -e s/-ldl//g Makefile >Makefile2
|
|
rm Makefile
|
|
mv Makefile2 Makefile
|
|
|
|
sed -e s/-ldl//g uMakefile >uMakefile2
|
|
rm uMakefile
|
|
mv uMakefile2 uMakefile
|
|
|
|
cd ..
|
|
fi
|
|
|
|
if which gmake
|
|
then
|
|
gmake -C uppsrc
|
|
gmake -C uppsrc -f uMakefile
|
|
else
|
|
make -C uppsrc
|
|
make -C uppsrc -f uMakefile
|
|
fi
|
|
|
|
cp uppsrc/ide.out ./theide
|
|
cp uppsrc/umk.out ./umk
|