File: build

package info (click to toggle)
vfu 4.16%2Brepack-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 2,652 kB
  • ctags: 4,212
  • sloc: cpp: 16,503; ansic: 12,357; perl: 598; makefile: 564; sh: 61
file content (24 lines) | stat: -rwxr-xr-x 293 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

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

cd ..

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

cd ..