File: makefile

package info (click to toggle)
libopaque 1.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,064 kB
  • sloc: ansic: 7,701; python: 570; javascript: 379; makefile: 269; java: 195; php: 181; erlang: 121; ruby: 61; sh: 12
file content (10 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
all: opaque.so

opaque.so: opaque.c
	gcc opaque.c -g -shared -o opaque.so -fPIC  $(shell pkgconf --libs lua) -lopaque

test: opaque.so
	./test.lua

clean:
	rm -f opaque.so