Skip to content
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.

Commit

Permalink
Using a default PREFIX directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Carregal committed Oct 29, 2007
1 parent c135cbf commit be33b6e
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions config
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Installation directories

# Default prefix
PREFIX = /usr/local

# System's libraries directory (where binary libraries are installed)
LUA_LIBDIR= /usr/local/lib/lua/5.0
LUA_LIBDIR= $(PREFIX)/lib/lua/5.1

# System's lua directory (where Lua libraries are installed)
LUA_DIR= /usr/local/share/lua/5.0
LUA_DIR= $(PREFIX)/share/lua/5.1

# Lua includes directory
LUA_INC= /usr/local/include
LUA_INC= $(PREFIX)/include

# Expat includes directory
EXPAT_INC= /usr/local/include

Expand Down

0 comments on commit be33b6e

Please sign in to comment.