File: configure.windows

package info (click to toggle)
makebootfat 1.4-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,736 kB
  • ctags: 357
  • sloc: sh: 3,124; ansic: 2,746; asm: 148; makefile: 94
file content (8 lines) | stat: -rwxr-xr-x 202 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/bash

(
	export CFLAGS="-O2 -Wall -march=i586 -mcpu=i686 -fomit-frame-pointer" ;
	export LDFLAGS="-s"
	export LIBS="-lsetupapi"
	./configure --host=i386-mingw32msvc --build=`./config.guess` $@
)