aboutsummaryrefslogtreecommitdiff
path: root/cgit.mk
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'cgit.mk')
-rw-r--r--cgit.mk22
1 files changed, 3 insertions, 19 deletions
diff --git a/cgit.mk b/cgit.mk
index 25f2eab..9d6dea8 100644
--- a/cgit.mk
+++ b/cgit.mk
@@ -25,25 +25,6 @@ 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
@@ -80,6 +61,9 @@ $(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)