office-gobmx/lpsolve/makefile.mk

87 lines
2.2 KiB
Makefile
Raw Normal View History

2007-11-23 14:29:22 -06:00
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2008 by Sun Microsystems, Inc.
2007-11-23 14:29:22 -06:00
#
# OpenOffice.org - a multi-platform office productivity suite
2007-11-23 14:29:22 -06:00
#
# $RCSfile: makefile.mk,v $
2007-11-23 14:29:22 -06:00
#
# $Revision: 1.5 $
2007-11-23 14:29:22 -06:00
#
# This file is part of OpenOffice.org.
2007-11-23 14:29:22 -06:00
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
2007-11-23 14:29:22 -06:00
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
2007-11-23 14:29:22 -06:00
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
2007-11-23 14:29:22 -06:00
#
#*************************************************************************
PRJ=.
PRJNAME=lpsolve
TARGET=lpsolve
# --- Settings -----------------------------------------------------
.INCLUDE : settings.mk
# --- Files --------------------------------------------------------
TARFILE_NAME=lp_solve_5.5
.IF "$(GUI)"=="WNT"
PATCH_FILE_NAME=lp_solve_5.5-windows.patch
.ELSE
PATCH_FILE_NAME=lp_solve_5.5.patch
ADDITIONAL_FILES=lpsolve55$/ccc.solaris
.ENDIF
CONFIGURE_DIR=
CONFIGURE_ACTION=
CONFIGURE_FLAGS=
BUILD_DIR=lpsolve55
.IF "$(GUI)"=="WNT"
.IF "$(COM)"=="GCC"
BUILD_ACTION=cmd /c cgcc.bat
.ELSE
2007-11-23 14:29:22 -06:00
BUILD_ACTION=cmd /c cvc6.bat
OUT2LIB=$(BUILD_DIR)$/lpsolve55.lib
.ENDIF
OUT2BIN=$(BUILD_DIR)$/lpsolve55.dll
2007-11-23 14:29:22 -06:00
.ELSE
2007-12-21 02:32:37 -06:00
.IF "$(OS)"=="MACOSX"
BUILD_ACTION=sh ccc.osx
OUT2LIB=$(BUILD_DIR)$/liblpsolve55.dylib
.ELSE
2007-11-23 14:29:22 -06:00
.IF "$(COMNAME)"=="sunpro5"
BUILD_ACTION=sh ccc.solaris
.ELSE
BUILD_ACTION=sh ccc
.ENDIF
OUT2LIB=$(BUILD_DIR)$/liblpsolve55.so
.ENDIF
2007-12-21 02:32:37 -06:00
.ENDIF
2007-11-23 14:29:22 -06:00
OUT2INC=lp_lib.h lp_types.h lp_utils.h lp_Hash.h lp_matrix.h lp_mipbb.h lp_SOS.h
# --- Targets ------------------------------------------------------
.INCLUDE : set_ext.mk
.INCLUDE : target.mk
.INCLUDE : tg_ext.mk