File: create_make_files.sh

package info (click to toggle)
libharu 2.1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 10,296 kB
  • ctags: 7,703
  • sloc: ansic: 130,515; sh: 9,509; python: 5,086; cs: 2,546; pascal: 1,625; ruby: 809; makefile: 220; cpp: 95
file content (25 lines) | stat: -rwxr-xr-x 731 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#/bin/sh

./configure --system-name=GCC
mv Makefile script/Makefile.gcc
./configure --system-name=GCC --shared
mv Makefile script/Makefile.gcc_so
./configure --system-name=CYGWIN
mv Makefile script/Makefile.cygwin
./configure --system-name=CYGWIN --shared
mv Makefile script/Makefile.cygwin_dll
./configure --system-name=MSVC
mv Makefile script/Makefile.msvc
./configure --system-name=MSVC --shared
mv Makefile script/Makefile.msvc_dll
./configure --system-name=BCC
mv Makefile script/Makefile.bcc32
./configure --system-name=BCC --shared
mv Makefile script/Makefile.bcc32_dll
./configure --system-name=MINGW
mv Makefile script/Makefile.mingw
./configure --system-name=MINGW --shared
mv Makefile script/Makefile.mingw_dll

exit 0