File: test-liboxli-dev

package info (click to toggle)
khmer 2.1.2%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 59,064 kB
  • sloc: cpp: 102,051; python: 19,654; ansic: 677; makefile: 578; sh: 167; xml: 19; javascript: 16
file content (16 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -ex

pkg=khmer
if [ "$AUTOPKGTEST_TMP" = "" ] ; then
  AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
fi
cd "$AUTOPKGTEST_TMP"

c++ -o test-prog-static -static -std=c++11 \
	$(pkg-config oxli --static --cflags) -I/usr/include/oxli/smhasher \
	/usr/share/doc/khmer-common/test-compile.cc \
	$(pkg-config oxli --static --libs)

./test-prog-static

rm -f test-prog-*