File: m32init.bat

package info (click to toggle)
slang2 2.3.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,488 kB
  • sloc: ansic: 101,756; sh: 3,435; makefile: 1,046; pascal: 440
file content (18 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@echo off
echo - generating Makefile in src...
src\mkfiles\mkmake WIN32 MINGW32 DLL < src\mkfiles\makefile.all > src\Makefile

echo - generating Makefile in slsh...
src\mkfiles\mkmake WIN32 MINGW32 DLL < slsh\mkfiles\makefile.all > slsh\Makefile

echo - generating Makefile in modules...
src\mkfiles\mkmake WIN32 MINGW32 DLL < modules\mkfiles\makefile.all > modules\Makefile

copy src\slconfig.h src\config.h
copy mkfiles\makefile.m32 Makefile

echo Now run mingw32-make to build the library.  But first, you should
echo look at Makefile and change the installation locations if
echo necessary.  In particular, the PREFIX variable in the top-level
echo Makefile controls where the library will be installed.
echo -