Re: autotools and Lua modules
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: autotools and Lua modules
- From: Wesley Smith <wesley.hoke@...>
- Date: 2010年6月19日 06:01:07 -0700
I know about Cmake. It doesn't suit my purposes though. I'm trying
to do things within the standard GNU conventions. Got some good
advice on the automake list:
AM_CPPFLAGS = -I$(srcdir)/include -I/usr/include/lua5.1
lib_LTLIBRARIES = test.la
test_la_LDFLAGS = -module -avoid-version
test_la_SOURCES = src/test.cpp
-module -avoid-version apparently just generates the final .so I had wanted.
wes