[go: up one dir, main page]

Menu

[34d7f3]: / src / Makefile.am  Maximize  Restore  History

Download this file

68 lines (52 with data), 2.0 kB

 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
64
65
66
libsispmctl_la_LDFLAGS = \
-version-info 2:3:2
bin_PROGRAMS = sispmctl
lib_LTLIBRARIES = libsispmctl.la
sispmctl_LDADD = libsispmctl.la
if ALLSTATICCOND
sispmctl_LDFLAGS = -all-static
endif
EXTRA_DIST = \
web1/index.html web1/logo.png web1/off1.html web1/off2.html \
web1/off3.html web1/off4.html web1/on1.html web1/on2.html \
web1/on3.html web1/on4.html web1/status0.png web1/status1.png \
web1/style.css web2/index.html web2/logo.svg web2/off1.html \
web2/off2.html web2/off3.html web2/off4.html web2/on1.html \
web2/on2.html web2/on3.html web2/on4.html web2/style.css \
web3/index.html web3/logo.svg web3/off1.html web3/off2.html \
web3/off3.html web3/off4.html web3/on1.html web3/on2.html \
web3/on3.html web3/on4.html web3/style.css
if WEBLESSCOND
AM_CFLAGS=-Wall -DWEBLESS=@WEBLESS@
else
AM_CFLAGS=-Wall -DBINDADDR="\"@BINDADDR@\"" -DDATADIR="\"@WEBDIR@\""
pkgdata1dir = "$(docdir)/httpd/skin1"
pkgdata2dir = "$(docdir)/httpd/skin2"
pkgdata3dir = "$(docdir)/httpd/skin3"
pkgdata1_DATA = \
web1/index.html web1/logo.png web1/off1.html web1/off2.html \
web1/off3.html web1/off4.html web1/on1.html web1/on2.html \
web1/on3.html web1/on4.html web1/status0.png web1/status1.png \
web1/style.css
pkgdata2_DATA = \
web2/index.html web2/logo.svg web2/off1.html web2/off2.html \
web2/off3.html web2/off4.html web2/on1.html web2/on2.html \
web2/on3.html web2/on4.html web2/style.css
pkgdata3_DATA = \
web3/index.html web3/logo.svg web3/off1.html web3/off2.html \
web3/off3.html web3/off4.html web3/on1.html web3/on2.html \
web3/on3.html web3/on4.html web3/style.css
endif
libsispmctl_la_SOURCES = \
process.c sispm_ctl.c schedule.c socket.c sispm_ctl.h socket.h
sispmctl_SOURCES = main.c
AM_CPPFLAGS = $(all_includes)
AM_LDFLAGS = $(all_libraries)
install-data-local:
if WEBLESSCOND
else
mkdir -p "$(DESTDIR)$(docdir)/httpd/skin1"
cd "$(DESTDIR)$(docdir)" && ln -sf httpd/skin2 skin
endif
uninstall-local:
rm -rf $(DESTDIR)$(datadir)/$(PACKAGE)/httpd