File: spl-config.templ

package info (click to toggle)
spl 1.0~pre6-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,364 kB
  • ctags: 2,070
  • sloc: ansic: 16,614; yacc: 3,182; sh: 299; makefile: 167; xml: 156
file content (22 lines) | stat: -rw-r--r-- 247 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
#!/bin/sh

case "$*" in
	--cflags)
		echo @CFLAGS@
		;;
	--ldflags)
		echo @LDFLAGS@
		;;
	--ldlibs)
		echo @LDLIBS@
		;;
	--moddir)
		echo @MODDIR@
		;;
	*)
		echo "Usage: $0 { --cflags | --ldflags | --ldlibs | --moddir }"
		exit 1
esac

exit 0