File: python.cin

package info (click to toggle)
crystalspace 0.94-20020412-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 62,276 kB
  • ctags: 52,843
  • sloc: cpp: 274,783; ansic: 6,608; perl: 6,276; objc: 3,952; asm: 2,942; python: 2,354; php: 542; pascal: 530; sh: 430; makefile: 370; awk: 193
file content (14 lines) | stat: -rw-r--r-- 328 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
if test -z "$1"; then
    echo "Don't call this script directly it's meant to use together with cs-config"
    exit 1
fi

case $1 in
    --libs) echo "$PYTH_LIBS";;
    --deps) echo "$PYTH_DEPS";;
    --cflags) echo "$PYTH_CFLAGS";;
    --cxxflags) echo "$PYTH_CXXFLAGS";;
    *) echo "Unknown option"; exit 1;;
esac