File: depdlib.sh

package info (click to toggle)
allegro4.2 2%3A4.2.0-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 24,436 kB
  • ctags: 14,714
  • sloc: ansic: 126,425; asm: 17,011; cpp: 3,846; sh: 2,120; objc: 925; makefile: 715; python: 216; pascal: 179; perl: 73
file content (151 lines) | stat: -rwxr-xr-x 3,968 bytes parent folder | download | duplicates (5)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#! /bin/sh

# Generate dependencies and rules for building the datafile plugins library.

plugin_files="$* tools/plugins/*.c"
objects=`echo $plugin_files | sed 's,[^	 ]*/,,g;s,\.[^.	 ]*,,g'`

# Normal library.
prev="LIBALDAT_OBJECTS ="
for file in .. $objects; do
  if test "$file" != ..; then
    echo "$prev \\"
    prev="  \$(OBJDIR)/alleg/$file\$(OBJ)"
  fi
done
echo "$prev"
echo ""
echo "\$(LIBDIR)/libaldat.a: \$(LIBALDAT_OBJECTS)"
echo "	rm -f \$(LIBDIR)/libaldat.a"
echo "	\$(AR) \$(LIBDIR)/libaldat.a \$(LIBALDAT_OBJECTS)"
echo ""

# Debugging library.
prev="LIBADDAT_OBJECTS ="
for file in .. $objects; do
  if test "$file" != ..; then
    echo "$prev \\"
    prev="  \$(OBJDIR)/alld/$file\$(OBJ)"
  fi
done
echo "$prev"
echo ""
echo "\$(LIBDIR)/libaddat.a: \$(LIBADDAT_OBJECTS)"
echo "	rm -f \$(LIBDIR)/libaddat.a"
echo "	\$(AR) \$(LIBDIR)/libaddat.a \$(LIBADDAT_OBJECTS)"
echo ""

# Profiling library.
prev="LIBAPDAT_OBJECTS ="
for file in .. $objects; do
  if test "$file" != ..; then
    echo "$prev \\"
    prev="  \$(OBJDIR)/allp/$file\$(OBJ)"
  fi
done
echo "$prev"
echo ""
echo "\$(LIBDIR)/libapdat.a: \$(LIBAPDAT_OBJECTS)"
echo "	rm -f \$(LIBDIR)/libapdat.a"
echo "	\$(AR) \$(LIBDIR)/libapdat.a \$(LIBAPDAT_OBJECTS)"
echo ""

missing=
symbols=
for file in .. $plugin_files; do
  if test -f "$file"; then
    dir=`echo $file | sed 's,/[^/]*$,,'`
    name=`echo $file | sed 's,^.*/,,;s,\.[^.]*$,,'`
    ext=`echo $file | sed 's,^.*\.,,'`
    includes=
    deps="$file"
    while test -n "$deps"; do
      newdeps=
      for dep in $deps; do
	includes1=`grep '^[ 	]*#[ 	]*include[ 	]*[a-zA-Z0-9_][a-zA-Z0-9_]*' $dep | \
	  sed 's,^[ 	]*#[ 	]*include[ 	]*\([a-zA-Z0-9_]*\),\1,'`
	includes2=`grep '^[ 	]*#[ 	]*include[ 	]*".*"' $dep | \
	  sed 's,^[ 	]*#[ 	]*include[ 	]*"\(.*\)",\1,'`
	if test -n "$includes1"; then
	  for include in $includes1; do
	    includes="$includes \$($include)"
	    case "$symbols" in
	    *$include* )
	      ;;
	    * )
	      symbols="$symbols $include"
	      ;;
	    esac
	  done
	fi
	if test -n "$includes2"; then
	  for include in $includes2; do
	    if test -f "$dir/$include"; then
	      includes="$includes \$(srcdir)/$dir/$include"
	      newdeps="$newdeps $dir/$include"
	    else
	      include=`echo $include | sed 's,[-./:],_,g'`
	      includes="$includes \$($include)"
	      case "$symbols" in
	      *$include* )
		;;
	      * )
		symbols="$symbols $include"
		;;
	      esac
	    fi
	  done
	fi
      done
      deps="$newdeps"
    done

    # Normal library.
    echo "\$(OBJDIR)/alleg/$name\$(OBJ): \$(srcdir)/$file$includes"
    if test "$ext" = "c"; then
      echo "	\$(COMPILE_NORMAL) -c \$(srcdir)/$file -o \$(OBJDIR)/alleg/$name\$(OBJ)"
    else
      echo "	\$(COMPILE_S_NORMAL) -c \$(srcdir)/$file -o \$(OBJDIR)/alleg/$name\$(OBJ)"
    fi
    echo ""

    # Debugging library.
    echo "\$(OBJDIR)/alld/$name\$(OBJ): \$(srcdir)/$file$includes"
    if test "$ext" = "c"; then
      echo "	\$(COMPILE_DEBUG) -c \$(srcdir)/$file -o \$(OBJDIR)/alld/$name\$(OBJ)"
    else
      echo "	\$(COMPILE_S_DEBUG) -c \$(srcdir)/$file -o \$(OBJDIR)/alld/$name\$(OBJ)"
    fi
    echo ""

    # Profiling library.
    echo "\$(OBJDIR)/allp/$name\$(OBJ): \$(srcdir)/$file$includes"
    if test "$ext" = "c"; then
      echo "	\$(COMPILE_PROFILE) -c \$(srcdir)/$file -o \$(OBJDIR)/allp/$name\$(OBJ)"
    else
      echo "	\$(COMPILE_S_PROFILE) -c \$(srcdir)/$file -o \$(OBJDIR)/allp/$name\$(OBJ)"
    fi
    echo ""
  elif test "$file" != ..; then
    missing="$missing $file"
  fi
done

if test -n "$symbols"; then
  echo "# Headers referred by symbols:"
  echo "#$symbols"
  echo ""
fi

if test -n "$missing"; then
  echo "# Missing source files:"
  echo "#$missing"
  echo ""
fi

# Special rule to create the plugins.h file
inc_files=`echo tools/plugins/*.inc | sed 's,tools/plugins/,$(srcdir)/tools/plugins/,g'`
echo "\$(OBJDIR)/plugins.h: $inc_files"
echo "	cat $inc_files > \$(OBJDIR)/plugins.h"
echo ""