#
# Copyright (c) 2011-2016 Red Hat.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
#

TOPDIR = ../..
include $(TOPDIR)/src/include/builddefs

CXXMDTARGET = pmwebd$(EXECSUFFIX)
HFILES = pmwebapi.h
CXXFILES = main.cxx pmwebapi.cxx pmresapi.cxx util.cxx

LLDLIBS = $(PCPLIB) $(LIB_FOR_MICROHTTPD) $(LIB_FOR_PTHREADS) 
LDIRT = pmwebd.log pmwebd.service

LCFLAGS += $(LIBMICROHTTPDCFLAGS)
LCFLAGS += -Wextra
LCFLAGS += $(PIECFLAGS)
LLDFLAGS += $(PIELDFLAGS)
ifeq "$(HAVE_CAIRO)" "true"
LLDLIBS += $(LIB_FOR_CAIRO)
LCFLAGS += -DHAVE_CAIRO $(CAIROCFLAGS)
endif
ifeq "$(HAVE_ZLIB)" "true"
LLDLIBS += $(LIB_FOR_ZLIB)
LCFLAGS += -DHAVE_ZLIB $(ZLIBCFLAGS)
endif
ifeq "$(TARGET_OS)" "mingw"
LLDLIBS += -lws2_32
else
LCFLAGS += -DHAVE_GRAPHITE
CXXFILES += pmgraphite.cxx
endif

default:	build-me

$(OBJECTS): $(HFILES)

include $(BUILDRULES)

ifeq "$(ENABLE_WEBAPI)" "true"
build-me:	$(CXXMDTARGET) pmwebd.service

pmwebd.service:	pmwebd.service.in
	$(SED) <$< >$@ \
	    -e 's;@PCP_RC_DIR@;'$(PCP_RC_DIR)';' \
	    -e 's;@PCP_RUN_DIR@;'$(PCP_RUN_DIR)';' \
	# END

install:	default
	$(INSTALL) -m 755 -d `dirname $(PCP_PMWEBDOPTIONS_PATH)`
	$(INSTALL) -m 644 pmwebd.options $(PCP_PMWEBDOPTIONS_PATH)
	$(INSTALL) -m 755 rc_pmwebd $(PCP_RC_DIR)/pmwebd
	$(INSTALL) -m 755 -d $(PCP_SHARE_DIR)/webapps
ifeq ($(ENABLE_SYSTEMD),true)
	$(INSTALL) -m 644 pmwebd.service $(PCP_SYSTEMDUNIT_DIR)/pmwebd.service
endif
	$(INSTALL) -m 755 $(CXXMDTARGET) $(PCP_BINADM_DIR)/$(CXXMDTARGET)
	$(INSTALL) -m 775 -o $(PCP_USER) -g $(PCP_GROUP) -d $(PCP_LOG_DIR)/pmwebd
else
build-me:
install:
endif

default_pcp ::	default

install_pcp :: install

clean::
	rm -f *.gcov *.gcda *.gcno

gcovbuild:
	$(MAKE) clean
	$(MAKE) CFLAGS_OPT="-fprofile-arcs -ftest-coverage -g" PIECFLAGS= PIELDFLAGS=
	@echo
	@echo
	@echo Test now
	@echo Then run: make gcov

gcov:
	gcov -r -f *.cxx *.h

indent:
	# indent -nhnl -l400 $(CXXFILES) $(HFILES)
	astyle  -A10 -n -xd -v -H -U -xy -xC100 $(CXXFILES) $(HFILES)
