]> gitweb.ps.run Git - ps-cgit/blobdiff - cgit.mk
filter: add lua support
[ps-cgit] / cgit.mk
diff --git a/cgit.mk b/cgit.mk
index 9d6dea8c368371e8e5b3f716c29665a98f7f8d73..25f2eabadc696f8f54230109639f4f6d0b0bf170 100644 (file)
--- a/cgit.mk
+++ b/cgit.mk
@@ -25,6 +25,25 @@ ifdef NO_C99_FORMAT
        CFLAGS += -DNO_C99_FORMAT
 endif
 
+ifdef NO_LUA
+       CFLAGS += -DNO_LUA
+else
+
+ifeq (VANILLA,$(LUA_IMPLEMENTATION))
+       CFLAGS += -llua
+else
+       LUAJIT_LIBS := $(shell pkg-config --libs luajit)
+       LUAJIT_CFLAGS := $(shell pkg-config --cflags luajit)
+       CGIT_LIBS += $(LUAJIT_LIBS)
+       CFLAGS += $(LUAJIT_CFLAGS)
+endif
+
+endif
+
+CGIT_LIBS += -ldl
+
+
+
 CGIT_OBJ_NAMES += cgit.o
 CGIT_OBJ_NAMES += cache.o
 CGIT_OBJ_NAMES += cmd.o
@@ -61,9 +80,6 @@ $(CGIT_VERSION_OBJS): $(CGIT_PREFIX)VERSION
 $(CGIT_VERSION_OBJS): EXTRA_CPPFLAGS = \
        -DCGIT_VERSION='"$(CGIT_VERSION)"'
 
-CGIT_LIBS += -ldl
-
-
 # Git handles dependencies using ":=" so dependencies in CGIT_OBJ are not
 # handled by that and we must handle them ourselves.
 cgit_dep_files := $(foreach f,$(CGIT_OBJS),$(dir $f).depend/$(notdir $f).d)