aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/tolua/config
diff options
context:
space:
mode:
Diffstat (limited to 'unmaintained/tolua/config')
-rw-r--r--unmaintained/tolua/config37
1 files changed, 0 insertions, 37 deletions
diff --git a/unmaintained/tolua/config b/unmaintained/tolua/config
deleted file mode 100644
index cf148eb13f..0000000000
--- a/unmaintained/tolua/config
+++ /dev/null
@@ -1,37 +0,0 @@
-# configuration file for making tolua
-
-# == CHANGE THE SETTINGS BELOW TO SUIT YOUR ENVIRONMENT ======================
-
-# you need an ANSI C compiler. gcc is a popular one.
-CC?= gcc
-CXX?= g++
-CCPP=$(CXX)
-WARN= -ansi -Wall -g
-
-# on SGI's, cc is ANSI.
-#CC= cc
-#WARN= -ansi -fullwarn
-
-# if your system doesn't have (or need) ranlib, change "ranlib" to "true".
-# on some systems, "ar s" does it.
-RANLIB= ranlib
-#RANLIB= ar s
-#RANLIB= true
-
-# this should work in all unix systems.
-AR= ar rcu
-
-# set lua path
-LUA=/usr/local
-LUAINC=$(LUA)/include
-LUALIB=$(LUA)/lib
-
-# == END OF USER SETTINGS. DO NOT CHANGE ANYTHING BELOW THIS LINE ============
-
-INC= -I$(TOLUA)/include -I$(LUAINC)
-LIB= -L$(TOLUA)/lib -L$(LUALIB)
-
-#CFLAGS= -O2 $(WARN) $(INC)
-#CPPFLAGS= -O2 $(WARN) $(INC)
-CFLAGS+= -g $(WARN) $(INC)
-CPPFLAGS+= -g $(WARN) $(INC)