diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-12-31 15:33:13 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-12-31 15:33:13 +0100 |
commit | 856c775316dbcdba36acfab1a3c300b0372d8ecf (patch) | |
tree | aad78e5f902bab4e22b3c54b8362b38208291ec2 /Makefile | |
parent | 3b409db5f23a6f4f39467e05f9edf0963721d3ed (diff) | |
download | applause2-856c775316dbcdba36acfab1a3c300b0372d8ecf.tar.gz |
support only LuaJIT and use some additional (insignificant) optimizations
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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 |