Files
harbour-core/harbour/make_tpl.bat
1999-09-14 23:38:55 +00:00

71 lines
1.7 KiB
Batchfile

@echo off
rem
rem $Id$
rem
rem Flavour: DOS/Windows batch file
rem ---------------------------------------------------------------
rem Template to initialize the environment before starting
rem the GNU make system for Harbour
rem
rem For further information about the GNU make system please
rem check doc/gmake.txt
rem ---------------------------------------------------------------
rem ---------------------------------------------------------------
rem Usage: make_tpl <command>
rem
rem The following commands are currently supported:
rem - all (default)
rem - clean
rem - install
rem ---------------------------------------------------------------
rem ---------------------------------------------------------------
rem Configuration for "install" command:
set HB_BIN_INSTALL=bin\
set HB_LIB_INSTALL=lib\
set HB_INC_INSTALL=include\
rem ---------------------------------------------------------------
rem The following HB_ARCHITECTURE values are currently supported:
rem - dos
rem - win32
rem - linux
rem - os2
set HB_ARCHITECTURE=dos
rem ---------------------------------------------------------------
rem The following HB_COMPILER values are currently supported:
rem - When HB_ARCHITECTURE=dos
rem - bcc31
rem - djgpp
rem - watcom
rem - When HB_ARCHITECTURE=win32
rem - bcc32
rem - gcc
rem - icc
rem - msvc
rem - When HB_ARCHITECTURE=linux
rem - gcc
rem - When HB_ARCHITECTURE=os2
rem - gcc
rem - icc
set HB_COMPILER=djgpp
rem ---------------------------------------------------------------
rem Fine tuning the compiler parameters for "all" command:
set PRG_USR=
set C_USR=
set L_USR=
rem ---------------------------------------------------------------
rem Start the GNU make system
make %1 %2 %3 %4 %5 %6 %7 %8 %9