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 (13 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: regexp_test

# if using fink on darwin
# you need these additional flags
CPPFLAGS = -I/sw/include -L/sw/lib

regexp_test: regex_wrap.cpp
	$(CXX) regex_wrap.cpp -o regex_wrap $(CPPFLAGS) \
	-I/usr/include/lua5.2 -I/usr/include/boost -fPIC \
	-llua5.2 -lluabind -lboost_regex

clean:
	rm -f regex_wrap *.o *~