mirror of
https://github.com/netdata-be/libnodave
synced 2025-10-13 00:42:50 +08:00
30 lines
411 B
Plaintext
Executable File
30 lines
411 B
Plaintext
Executable File
#
|
|
# This is just my script to remake all of the distribution
|
|
#
|
|
# make the LINUX library and test programs
|
|
make
|
|
#
|
|
# install them for e.g. PERL
|
|
#
|
|
sudo make install
|
|
#make dynamic
|
|
rm *.o
|
|
make -f MAKEFILE.VC.WINE
|
|
mv -f *.exe win
|
|
mv -f libnodave.dll win
|
|
mv -f libnodave.lib win
|
|
rm -f *.obj
|
|
rm -f *.exp
|
|
rm -f *.lib
|
|
cd Dot.NET
|
|
./mono.sh
|
|
cd ..
|
|
cd pascal
|
|
./build.linux
|
|
./buildwine.sh
|
|
cd ..
|
|
cd PERL
|
|
perl Makefile.PL
|
|
make
|
|
|