~ubuntu-branches/ubuntu/precise/psicode/precise

« back to all changes in this revision

Viewing changes to src/bin/cusp/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2006-09-10 14:01:33 UTC
  • Revision ID: james.westby@ubuntu.com-20060910140133-ib2j86trekykfsfv
Tags: upstream-3.2.3
ImportĀ upstreamĀ versionĀ 3.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
srcdir = @srcdir@
 
2
VPATH = @srcdir@
 
3
 
 
4
include ../MakeVars
 
5
 
 
6
LDLIBS += $(BLAS)
 
7
 
 
8
PSILIBS = -lPSI_dpd -lPSI_qt -lPSI_chkpt -lPSI_iwl -lPSI_psio -lPSI_ciomr -lPSI_ipv1
 
9
 
 
10
CSRC = \
 
11
cusp.c phi.c delta.c cache.c local.c
 
12
 
 
13
BINOBJ = $(CSRC:%.c=%.o)
 
14
 
 
15
include ../MakeRules
 
16
 
 
17
ifneq ($(DODEPEND),no)
 
18
$(BINOBJ:%.o=%.d): $(DEPENDINCLUDE)
 
19
include $(BINOBJ:%.o=%.d)
 
20
endif
 
21