mirror of https://github.com/Icinga/icinga2.git
15 lines
282 B
Makefile
15 lines
282 B
Makefile
|
## Process this file with automake to produce Makefile.in
|
||
|
|
||
|
|
||
|
bin_PROGRAMS = \
|
||
|
miniapp
|
||
|
|
||
|
miniapp_SOURCES = \
|
||
|
miniapp.cpp
|
||
|
|
||
|
miniapp_CXXFLAGS = -I${top_srcdir}/base \
|
||
|
-I${top_srcdir}/jsonrpc
|
||
|
|
||
|
miniapp_LDFLAGS = $(top_builddir)/base/libbase.a \
|
||
|
$(top_builddir)/jsonrpc/libjsonrpc.a
|