mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 05:00:42 +01:00
pkg-config uses uppercase for its _CFLAGS and _LIBS variable names. So we follow suit and convert all _cflags and _libs variables to uppercase for more consistency.
9 lines
274 B
Makefile
9 lines
274 B
Makefile
pkglib_LTLIBRARIES = ommysql.la
|
|
|
|
ommysql_la_SOURCES = ommysql.c ommysql.h
|
|
ommysql_la_CPPFLAGS = $(RSRT_CFLAGS) $(MYSQL_CFLAGS) $(PTHREADS_CFLAGS)
|
|
ommysql_la_LDFLAGS = -module -avoid-version
|
|
ommysql_la_LIBADD = $(MYSQL_LIBS)
|
|
|
|
EXTRA_DIST = createDB.sql contrib/delete_mysql
|