File: build

package info (click to toggle)
bobcat 2.08.01-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,668 kB
  • ctags: 953
  • sloc: cpp: 10,403; makefile: 9,042; perl: 401; sh: 195
file content (22 lines) | stat: -rwxr-xr-x 461 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

case $1 in
    (1)
        g++-4.4 --std=c++0x -c -Wall driver.cc
        g++-4.4 -o driver *.o ../*.o -lX11 -lbobcat
    ;;
    (2)
        g++ -o driver -Wall -I../../tmp *.cc -lX11 -L../../tmp/lib -lbobcat
    ;;
    (3)
        g++ -o driver -Wall *.cc -lX11 -lbobcat
    ;;
    (*)
        echo "
Provide arg 1, 2 or 3:
    1: link to .o files in ..
    2: link to a created bobcat in ../../tmp/lib
    3: link to installed bobcat
"
    ;;
esac