aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2015-12-31 15:33:13 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2015-12-31 15:33:13 +0100
commit856c775316dbcdba36acfab1a3c300b0372d8ecf (patch)
treeaad78e5f902bab4e22b3c54b8362b38208291ec2 /Makefile
parent3b409db5f23a6f4f39467e05f9edf0963721d3ed (diff)
downloadapplause2-856c775316dbcdba36acfab1a3c300b0372d8ecf.tar.gz
support only LuaJIT and use some additional (insignificant) optimizations
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index ceb7ff8..999fac3 100644
--- a/Makefile
+++ b/Makefile
@@ -2,15 +2,8 @@ CC = gcc
CFLAGS = -std=c99 -Wall -O2
-LUAJIT = yes
-
-ifeq ($(LUAJIT),yes)
LUA_CFLAGS = $(shell pkg-config --cflags luajit)
LUA_LDFLAGS = $(shell pkg-config --libs luajit)
-else
-LUA_CFLAGS = $(shell pkg-config --cflags lua5.1)
-LUA_LDFLAGS = $(shell pkg-config --libs lua5.1)
-endif
READLINE_CFLAGS =
READLINE_LDFLAGS = -lreadline -lhistory