lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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