git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@255 0109f412-320b-0410-ab79-c3e0c5ffbbe6
34 lines
1.2 KiB
Batchfile
34 lines
1.2 KiB
Batchfile
@echo off
|
|
|
|
REM -------------------------------------------------------------------------
|
|
REM Desc: Batch file for building GNU make on Windows platforms
|
|
REM Tabs: 3
|
|
REM
|
|
REM Copyright (c) 2006 Novell, Inc. All Rights Reserved.
|
|
REM
|
|
REM This program is free software; you can redistribute it and/or
|
|
REM modify it under the terms of version 2 of the GNU General Public
|
|
REM License as published by the Free Software Foundation.
|
|
REM
|
|
REM This program is distributed in the hope that it will be useful,
|
|
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
REM GNU General Public License for more details.
|
|
REM
|
|
REM You should have received a copy of the GNU General Public License
|
|
REM along with this program; if not, contact Novell, Inc.
|
|
REM
|
|
REM To contact Novell about this file by physical or electronic mail,
|
|
REM you may find current contact information at www.novell.com
|
|
REM
|
|
REM $Id$
|
|
REM -------------------------------------------------------------------------
|
|
|
|
setlocal
|
|
if exist build-dir rd /s /q build-dir
|
|
mkdir build-dir
|
|
cd build-dir
|
|
cl /nologo /W0 /MT -I. -DWINDOWS32 -DHAVE_STRING_H -DHAVE_DIRENT_H -DHAVE_FCNTL_H -I.. advapi32.lib user32.lib ../*.c /Femake.exe
|
|
cd ..
|
|
endlocal
|