lua-users home
lua-l archive

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


> adding the following lines to the 'pc' section in the Makefile:
> 
> 	@echo "Name: Lua"
> 	@echo "Cflags: -I${includedir}"
> 	@echo "Libs: -L${libdir} -llua"

The last two lines should be
	echo 'Cflags: -I$${includedir}'
	echo 'Libs: -L$${libdir} -llua'

because make expands $ everywhere.