File: Makefile

package info (click to toggle)
luabind 0.9.1%2Bdfsg-11
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,844 kB
  • ctags: 2,833
  • sloc: cpp: 13,796; makefile: 126; sh: 24; ansic: 11
file content (9 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
all: cln_test

cln_test: cln_test.cpp
	$(CXX) cln_test.cpp -o cln_test \
	-I/usr/include/lua5.1 -I/usr/include/boost \ 
	-lluabind -llua -llualib -lcln

clean:
	rm -f cln_test *.o *~