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

« back to all changes in this revision

Viewing changes to src/lib/util/class/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:
31
31
endif
32
32
include $(SRCDIR)/$(TOPDIR)/lib/GlobalMakefile
33
33
 
34
 
CXXSRC = class.cc proxy.cc
 
34
CXXSRC = class.cc scexception.cc
35
35
 
36
36
LIBOBJ = $(CXXSRC:%.cc=%.$(OBJSUF)) $(GENCXXSRC:%.cc=%.$(OBJSUF))
37
37
 
38
 
INC = class.h proxy.h
 
38
INC = class.h proxy.h scexception.h
39
39
 
40
40
DEPENDINCLUDE = $(INC) $(GENINC)
41
41
 
42
42
BIN_OR_LIB = LIB
43
43
TARGET_TO_MAKE = libSCclass
44
44
 
45
 
TESTCXXSRC = classtest.cc
 
45
TESTCXXSRC = classtest.cc scextest.cc
46
46
DISTFILES = $(CXXSRC) $(INC) Makefile LIBS.h $(TESTCXXSRC)
47
47
 
48
 
TESTPROGS = classtest
 
48
TESTPROGS = classtest scextest
49
49
 
50
50
default:: $(DEPENDINCLUDE)
51
51
 
56
56
classtest: classtest.$(OBJSUF) libSCclass.$(LIBSUF) libSCcontainer.$(LIBSUF) libSCref.$(LIBSUF) libSCmisc.$(LIBSUF) libSCstate.$(LIBSUF) libSCkeyval.$(LIBSUF)
57
57
        $(LTLINK) $(LD) $(LDFLAGS) -o classtest $^ $(SYSLIBS) $(LTLINKBINOPTS)
58
58
 
 
59
scextest: scextest.$(OBJSUF) libSCclass.$(LIBSUF) libSCcontainer.$(LIBSUF) libSCref.$(LIBSUF) libSCmisc.$(LIBSUF) libSCstate.$(LIBSUF) libSCkeyval.$(LIBSUF)
 
60
        $(LTLINK) $(LD) $(LDFLAGS) -o $@ $^ $(SYSLIBS) $(LTLINKBINOPTS)
 
61
 
59
62
bug: bug.cc
60
63
        $(LTLINK) $(CXX) $(CXXFLAGS) -o bug $^ $(LTLINKBINOPTS)
61
64