~ubuntu-branches/ubuntu/warty/petsc/warty

« back to all changes in this revision

Viewing changes to src/sys/src/adic/Gradient/makefile

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV
  • Date: 2004-06-07 13:41:43 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040607134143-92p586zrauvie0le
Tags: 2.2.0-2
* Upstream patch level 2.
* New PETSC_BOPT_EXTRA option for different BOPT and lib names, with _c++
  symlinks only for plain and single (closes: #249617).
* New DEBIAN_DIST=contrib option to link with hypre, parmetis (closes:
  #249619).
* Combined petsc-c and petsc-fortran substvars into petsc-compilers.
* Extra quote in -dev prerm eliminates "too many arguments" problem.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: makefile,v 1.14 2001/08/22 18:02:45 balay Exp $ 
 
2
#
 
3
#    ad_grad.c and ad_utils.c are automatically included into application codes that
 
4
#  use adiC. They are ALSO compiled into the PETSc libraries so that apps that do not 
 
5
#  use adiC can still link.
 
6
#
 
7
ALL: lib
 
8
 
 
9
CFLAGS   = $(ADIC_DEFINES) -I$(PETSC_DIR)/include/adic
 
10
FFLAGS   = 
 
11
SOURCEC  = ad_grad_daxpy.c ad_grad.c ad_utils.c
 
12
SOURCEF  =
 
13
OBJSC    = ad_grad_daxpy.o ad_grad.o ad_utils.o
 
14
OBJSF    =
 
15
LIBBASE  = libpetsc
 
16
DIRS     = 
 
17
LOCDIR   = src/sys/src/adic/Gradient/
 
18
MANSEC   = Sys
 
19
 
 
20
include ${PETSC_DIR}/bmake/common/base
 
21
include ${PETSC_DIR}/bmake/common/test
 
22