mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 11:00:41 +01:00
The --enable-libcurl switch was added to be able to disable libcurl functionality inside the rsyslog core, see 46f4f43. As libcurl is no longer used inside the core (due to introducing function modules), --enable-libcurl needs to be removed. closes https://github.com/rsyslog/rsyslog/issues/2628
21 lines
530 B
Makefile
21 lines
530 B
Makefile
BUILT_SOURCES = grammar.h
|
|
CLEANFILES = grammar.h grammar.c lexer.c
|
|
AM_YFLAGS = -d
|
|
noinst_LTLIBRARIES = libgrammar.la
|
|
#bin_PROGRAMS = testdriver # TODO: make this conditional
|
|
|
|
libgrammar_la_SOURCES = \
|
|
grammar.y \
|
|
lexer.l \
|
|
rainerscript.c \
|
|
rainerscript.h \
|
|
parserif.h \
|
|
grammar.h
|
|
libgrammar_la_CPPFLAGS = $(RSRT_CFLAGS) $(LIBLOGGING_STDLOG_CFLAGS)
|
|
libgrammar_la_LIBADD =
|
|
|
|
#testdriver_SOURCES = testdriver.c libgrammar.la
|
|
#testdriver_CPPFLAGS = $(RSRT_CFLAGS)
|
|
#testdriver_LDADD = libgrammar.la
|
|
#testdriver_LDFLAGS = -lestr
|