[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: autotools and Lua modules
- From: Wesley Smith <wesley.hoke@...>
- Date: Sat, 19 Jun 2010 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