mirror of
https://github.com/clearlinux/telemetrics-client.git
synced 2026-09-04 12:41:55 +00:00
32 lines
749 B
Makefile
32 lines
749 B
Makefile
AM_CFLAGS = \
|
|
-std=gnu99 \
|
|
-pedantic \
|
|
-Wall \
|
|
-Wformat \
|
|
-Wformat-security \
|
|
-Wimplicit-function-declaration \
|
|
-Wstrict-prototypes \
|
|
-Wundef \
|
|
-fno-common \
|
|
-Wconversion \
|
|
-Wunreachable-code \
|
|
-funsigned-char \
|
|
-fPIE \
|
|
-fPIC
|
|
|
|
AM_CPPFLAGS = \
|
|
-D_FORTIFY_SOURCE=2 \
|
|
-I $(top_builddir) \
|
|
-I $(top_srcdir) \
|
|
-I $(top_builddir)/src \
|
|
-I $(top_srcdir)/src \
|
|
-DTOPSRCDIR=\"$(top_srcdir)\" \
|
|
-DABSTOPSRCDIR=\"$(abs_top_srcdir)\" \
|
|
-DDATADIR=\"$(datadir)\" \
|
|
-DLOCALSTATEDIR=\"$(localstatedir)\" \
|
|
-DKERNELOOPSDIR=\"$(localstatedir)/cache/telemetry/oops\" \
|
|
-DPSTOREDIR=\"$(localstatedir)/cache/telemetry/pstore\" \
|
|
-DTESTOOPSDIR=\"$(top_srcdir)/tests/oops_test_files\"
|
|
|
|
# vim: filetype=automake tabstop=8 shiftwidth=8 noexpandtab
|