~ubuntu-branches/ubuntu/trusty/psicode/trusty

« back to all changes in this revision

Viewing changes to src/bin/MakeRules.in

  • 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:
12
12
# installing it.
13
13
#
14
14
 
15
 
default:: $(TARGET)
 
15
default:: $(PSITARGET)
16
16
 
17
17
all: default
18
18
 
47
47
 
48
48
install_man::
49
49
 
50
 
$(TARGET): $(BINOBJ) $(PSILIBS)
51
 
        $(MKDIRS) `dirname $(TARGET)`
 
50
$(PSITARGET): $(BINOBJ) $(PSILIBS)
 
51
        $(MKDIRS) `dirname $(PSITARGET)`
52
52
        $(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS)
53
53
 
54
 
install_target:: $(TARGET)
 
54
install_target:: $(PSITARGET)
55
55
        $(MKDIRS) $(bindir)
56
56
        $(INSTALL_PROGRAM) $< $(bindir)
57
57
 
71
71
        -rm -f *.u
72
72
 
73
73
targetclean:
74
 
        -rm -f $(TARGET)
 
74
        -rm -f $(PSITARGET)
75
75
 
76
76
#
77
77
# find dependencies
83
83
        $(CCDEPEND) $(CDEF) $(CINC) $< | sed 's/$*.o/$*.o $*.d/g' > $@
84
84
 
85
85
%.u: %.c
86
 
        $(CCDEPEND) $(CDEF) $(CINC) $< > /dev/null
 
86
        $(CCDEPEND) $(CDEF) $(CINC) $< > /dev/null
87
87
 
88
88
%.d: %.C
89
89
        $(CXXDEPEND) $(CXXDEF) $(CXXINC) $< | sed 's/$*.o/$*.o $*.d/g' > $@
95
95
# keep the configuration information and makefiles up-to-date
96
96
#
97
97
 
98
 
$(top_srcdir)/configure: $(top_srcdir)/configure.in $(top_srcdir)/aclocal.m4
 
98
$(top_srcdir)/configure: $(top_srcdir)/configure.ac $(top_srcdir)/aclocal.m4
99
99
        cd $(top_srcdir) && autoconf
100
100
 
101
101
$(top_objdir)/config.status: $(top_srcdir)/configure