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

« back to all changes in this revision

Viewing changes to src/bin/response/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 += $(LAPACK) $(BLAS)
 
7
 
 
8
PSILIBS = -lPSI_dpd -lPSI_qt -lPSI_chkpt -lPSI_iwl -lPSI_psio -lPSI_ciomr -lPSI_ipv1
 
9
 
 
10
CSRC = \
 
11
response.c  get_moinfo.c get_params.c cache.c \
 
12
build_A_RHF.c build_B_RHF.c invert_RPA_RHF.c trans_mu.c
 
13
 
 
14
BINOBJ = $(CSRC:%.c=%.o)
 
15
 
 
16
include ../MakeRules
 
17
 
 
18
ifneq ($(DODEPEND),no)
 
19
$(BINOBJ:%.o=%.d): $(DEPENDINCLUDE)
 
20
include $(BINOBJ:%.o=%.d)
 
21
endif
 
22