File: build-test

package info (click to toggle)
libssc 0.3.0-1
  • links: PTS
  • area: main
  • in suites: experimental
  • size: 1,840 kB
  • sloc: ansic: 3,551; python: 647; sh: 15; makefile: 11
file content (9 lines) | stat: -rwxr-xr-x 212 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/usr/bin/make -f

CFLAGS=$(shell pkg-config --cflags libssc)
LIBS=$(shell pkg-config --libs libssc)

t1: debian/tests/build-test.c
	gcc -o $@ $(CFLAGS) $< $(LIBS)
	@echo "Build test of $< succeeded"
	@rm -f $@