~ubuntu-branches/ubuntu/oneiric/mpqc/oneiric

« back to all changes in this revision

Viewing changes to src/lib/math/linpackd/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2005-11-27 11:41:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051127114149-zgz9r3gk50w8ww2q
Tags: 2.3.0-1
* New upstream release.
* debian/rules (SONAME): Activate awk snippet for automatic so-name
  detection again, resulting in a bump to `7' and making a `c2a' for
  the C++ allocator change unnecessary; closes: #339232.
* debian/patches/00list (08_gcc-4.0_fixes): Removed, no longer needed.
* debian/rules (test): Remove workarounds, do not abort build if tests
  fail.
* debian/ref: Removed.
* debian/control.in (libsc): Added Conflict against libsc6c2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
TOPDIR=../../../..
2
 
ifndef SRCDIR
3
 
  SRCDIR=$(shell pwd)
4
 
endif
5
 
 
6
 
include $(SRCDIR)/$(TOPDIR)/lib/GlobalMakefile
7
 
 
8
 
TARGET_TO_MAKE = libSClinpackd
9
 
BIN_OR_LIB = LIB
10
 
 
11
 
CSRC = linpackd.c
12
 
 
13
 
LIBSRC = $(CSRC)
14
 
 
15
 
DISTFILES = $(CSRC) Makefile LIBS.h
16
 
 
17
 
LIBOBJ := $(LIBSRC:%.c=%.$(OBJSUF))
18
 
 
19
 
include $(SRCDIR)/$(TOPDIR)/lib/GlobalRules
20
 
 
21
 
DFILES := $(LIBSRC:.c=.d)
22
 
ifneq ($(DODEPEND),no)
23
 
ifneq ($(DFILES),)
24
 
include $(DFILES)
25
 
endif
26
 
endif
27