summaryrefslogtreecommitdiff
path: root/t/depcomp-recover.sh
blob: a48d93deff3458149d0e511aed430260210f45c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#! /bin/sh
# Copyright (C) 2012-2014 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Dependency tracking:
#  - we can recover if any .Po file in $(DEPDIR) gets removed;
#  - in fact, we can recover if the whole $(DEPDIR) directory gets
#    removed.

required=cc
. test-init.sh

cat >> configure.ac <<'END'
AC_PROG_CC
AC_CONFIG_FILES([sub/Makefile])
AC_OUTPUT
END

cat > Makefile.am <<'END'
SUBDIRS = . sub
noinst_PROGRAMS = foo
foo_SOURCES = main.c foo.c foo.h
get-depdir:
	@echo '$(DEPDIR)'
END

cat > main.c <<'END'
#include "foo.h"
int main (void)
{
  return foo ();
}
END
cat > foo.c <<'END'
#include "foo.h"
int foo (void)
{
  return 0;
}
END
echo 'int foo (void);' > foo.h

mkdir sub sub/src
cat > sub/Makefile.am <<'END'
noinst_PROGRAMS = foo
foo_SOURCES = src/main.c src/foo.c src/foo.h
END
cp main.c foo.c foo.h sub/src

$ACLOCAL
$AUTOCONF
$AUTOMAKE -a

for vpath in : false; do

  if $vpath; then
    srcdir=..
    mkdir build
    cd build
  else
    srcdir=.
  fi

  $srcdir/configure --enable-dependency-tracking
  $MAKE
  depdir=$($MAKE -s --no-print-directory get-depdir) \
    && test -n "$depdir" \
    && test -d $depdir \
    && test -d sub/src/$depdir \
    || fatal_ "cannot find the depdir"

  for remove_stuff in \
    "rm -f $depdir/main.Po" \
    "rm -f sub/src/$depdir/foo.Po" \
    "rm -rf $depdir" \
    "rm -rf $depdir sub/src/$depdir" \
  ; do
    $remove_stuff
    # We can still use make and order a build, even if we have probably
    # lost the dependency information registered in removed the .Po files.
    # TODO: maybe we should detect such a situation and force a clean
    # TODO: rebuild?
    $MAKE
    # But if we force a rebuild by hand by cleaning out the existing
    # objects, everything works out as expected.
    $MAKE clean
    $MAKE
    test -f $depdir/main.Po
    test -f $depdir/foo.Po
    test -f sub/src/$depdir/main.Po
    test -f sub/src/$depdir/foo.Po
  done

  cd $srcdir

done

: