~ubuntu-branches/ubuntu/vivid/psicode/vivid

« back to all changes in this revision

Viewing changes to src/lib/libint/Makefile.libint

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2008-06-07 16:49:57 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080607164957-8pifvb133yjlkagn
Tags: 3.3.0-3
* debian/rules (DEB_MAKE_CHECK_TARGET): Do not abort test suite on
  failures.
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Set ${bindir} to /usr/lib/psi.
* debian/rules (install/psi3): Move psi3 file to /usr/bin.
* debian/patches/07_464867_move_executables.dpatch: New patch, add
  /usr/lib/psi to the $PATH, so that the moved executables are found.
  (closes: #464867)
* debian/patches/00list: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
include $(top_objdir)/src/lib/libint/MakeVars
3
3
 
4
4
VPATH = .:$(top_srcdir)/src/lib/libint
5
 
TARGET = $(top_objdir)/lib/libPSI_int.a
 
5
PSITARGET = $(top_objdir)/lib/libPSI_int.a
6
6
 
7
7
#
8
8
# List all generated routines. Do it in a safe way in case the list is too long
21
21
LIBOBJ6 = $(TRUESRC6:%.cc=%.o)
22
22
LIBOBJ = $(LIBOBJ1) $(LIBOBJ2) $(LIBOBJ3) $(LIBOBJ4) $(LIBOBJ5) $(LIBOBJ6)
23
23
 
24
 
default:: $(TARGET) $(TARGET_HEADERS)
 
24
default:: $(PSITARGET) $(TARGET_HEADERS)
25
25
 
26
26
%.$(OBJSUF): %.c
27
27
        $(CC) $(CFLAGS) -c $< $(OUTPUT_OPTION)
33
33
# do installations
34
34
#
35
35
 
36
 
$(TARGET): $(LIBOBJ)
 
36
$(PSITARGET): $(LIBOBJ)
37
37
        $(MKDIRS) `dirname $(TARGET)`
38
 
        rm -f $(TARGET)
39
 
        $(AR) $(ARFLAGS) $(TARGET) $(LIBOBJ1)
40
 
        $(AR) $(ARFLAGS) $(TARGET) $(LIBOBJ2)
41
 
        $(AR) $(ARFLAGS) $(TARGET) $(LIBOBJ3)
42
 
        $(AR) $(ARFLAGS) $(TARGET) $(LIBOBJ4)
43
 
        $(AR) $(ARFLAGS) $(TARGET) $(LIBOBJ5)
44
 
        $(AR) $(ARFLAGS) $(TARGET) $(LIBOBJ6)
45
 
        $(RANLIB) $(TARGET)
 
38
        rm -f $(PSITARGET)
 
39
        $(AR) $(ARFLAGS) $(PSITARGET) $(LIBOBJ1)
 
40
        $(AR) $(ARFLAGS) $(PSITARGET) $(LIBOBJ2)
 
41
        $(AR) $(ARFLAGS) $(PSITARGET) $(LIBOBJ3)
 
42
        $(AR) $(ARFLAGS) $(PSITARGET) $(LIBOBJ4)
 
43
        $(AR) $(ARFLAGS) $(PSITARGET) $(LIBOBJ5)
 
44
        $(AR) $(ARFLAGS) $(PSITARGET) $(LIBOBJ6)
 
45
        $(RANLIB) $(PSITARGET)
46
46
 
47
47
$(top_objdir)/include/libint/%.h: %.h
48
48
        $(MKDIRS) `dirname $@`
64
64
        -rm -f *.d
65
65
 
66
66
targetclean:
67
 
        -rm -f `basename $(TARGET)`
 
67
        -rm -f `basename $(PSITARGET)`