blob: c88df9875bfe9d7b2d5c1931c0a18d24e9e8138f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#
# Copyright (c) 2011-2014 Red Hat Inc.
#
# 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
CMDTARGET = pmwebd$(EXECSUFFIX)
HFILES = pmwebapi.h
CFILES = main.c util.c pmwebapi.c pmresapi.c
LLDLIBS = $(PCPLIB) -lmicrohttpd
LDIRT = pmwebd.log pmwebd.service
LCFLAGS += -Wextra
LCFLAGS += $(PIECFLAGS)
LLDFLAGS += $(PIELDFLAGS)
SUBDIRS = jsdemos
default: build-me
include $(BUILDRULES)
ifeq "$(HAVE_LIBMICROHTTPD)" "1"
build-me: $(CMDTARGET) pmwebd.service
pmwebd.service: pmwebd.service.in
$(SED) -e 's;@path@;'$(PCP_RC_DIR)';' $< > $@
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
ifeq ($(ENABLE_SYSTEMD),true)
$(INSTALL) -m 644 pmwebd.service $(PCP_SYSTEMDUNIT_DIR)/pmwebd.service
endif
$(INSTALL) -m 755 $(CMDTARGET) $(PCP_BINADM_DIR)/$(CMDTARGET)
$(INSTALL) -m 775 -o $(PCP_USER) -g $(PCP_GROUP) -d $(PCP_LOG_DIR)/pmwebd
else
build-me:
install:
endif
default_pcp :: default
default_pcp :: $(SUBDIRS)
$(SUBDIRS_MAKERULE)
install_pcp :: install
install_pcp :: $(SUBDIRS)
$(SUBDIRS_MAKERULE)
|