# HG changeset patch # User jbe # Date 1422574048 -3600 # Node ID 2916ad931f7e6f6d25415eefa5aed231fafc7c18 # Parent 159aa2706cdf23de7c2e6f018d0c26614ad5e070 Added default compile options for Debian diff -r 159aa2706cdf -r 2916ad931f7e Makefile --- a/Makefile Thu Jan 29 23:48:04 2015 +0100 +++ b/Makefile Fri Jan 30 00:27:28 2015 +0100 @@ -13,7 +13,13 @@ .elif $(PLATFORM) == "Linux" # Distinguish between different Linux distributions DISTRIBUTION != lsb_release -i -s -.if $(DISTRIBUTION) == "Ubuntu" +.if $(DISTRIBUTION) == "Debian" +# Default configuration for Debian +LUA_INCLUDE ?= /usr/include/lua5.2 +LUA_LIBDIR ?= /usr/lib +LUA_LIBRARY ?= lua5.2 +UTIL_FLAGS ?= -ldl -lbsd -lrt +.elif $(DISTRIBUTION) == "Ubuntu" # Default configuration for Ubuntu LUA_INCLUDE ?= /usr/include/lua5.2 LUA_LIBDIR ?= /usr/lib/x86_64-linux-gnu