File: build-test

package info (click to toggle)
libssc 0.4.2-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,788 kB
  • sloc: ansic: 3,714; python: 707; makefile: 10
file content (9 lines) | stat: -rwxr-xr-x 212 bytes parent folder | download | duplicates (2)
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 $@