File: build.sh

package info (click to toggle)
vfu 5.09-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,552 kB
  • sloc: cpp: 16,739; ansic: 2,605; perl: 678; makefile: 349; sh: 75
file content (37 lines) | stat: -rwxr-xr-x 830 bytes parent folder | download | duplicates (3)
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
#!/bin/sh

echo "-------------------------------------------------"
echo "Compiling VSTRING..."
make -C vstring
if [ -e vstring/libvstring.a ]; then
  echo "VSTRING compiled ok."
else
  echo "VSTRING compilation failed..."
fi

echo "-------------------------------------------------"
echo "Compiling VSLIB..."
make -C vslib
if [ -e vslib/libvslib.a ]; then
  echo "VSLIB compiled ok."
else
  echo "VSLIB compilation failed..."
fi

echo "-------------------------------------------------"
echo "Compiling YASCREEN..."
make -C yascreen
if [ -e yascreen/yascreen.a ]; then
  echo "VSLIB compiled ok."
else
  echo "VSLIB compilation failed..."
fi

echo "-------------------------------------------------"
echo "Compiling VFU..."
make -C vfu
if [ -e vfu/vfu ]; then
  echo "VFU compiled ok."
else
  echo "VFU compilation failed..."
fi