File: Makefile.am

package info (click to toggle)
weborf 1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,132 kB
  • sloc: sh: 4,760; ansic: 3,485; python: 762; makefile: 116; xml: 44
file content (97 lines) | stat: -rw-r--r-- 2,145 bytes parent folder | download
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#SUBDIRS =

bin_PROGRAMS = weborf
weborf_SOURCES = \
    auth.c \
    base64.c \
    buffered_reader.c \
    cachedir.c \
    cgi.c \
    configuration.c \
    instance.c \
    listener.c \
    mime.c \
    myio.c \
    mynet.c \
    mystring.c \
    queue.c \
    utils.c \
    webdav.c

EXTRA_DIST = \
    auth.h \
    buffered_reader.h \
    cgi.h \
    configuration.h \
    instance.h \
    mime.h \
    mynet.h \
    types.h \
    webdav.h \
    base64.h \
    cachedir.h \
    embedded_auth.h \
    listener.h \
    myio.h \
    mystring.h \
    queue.h \
    utils.h \
    examples \
    daemon \
    weborf.conf \
    testsuite/* \
    qweborf/qweborf/__init__.py \
    qweborf/qweborf/main.ui \
    qweborf/qweborf/nhelper.py \
    qweborf/qweborf/whelper.py \
    qweborf/qweborf/qweborf.py \
    qweborf/qweborf/qweborf \
    qweborf/man/qweborf.1 \
    qweborf/integration/qweborf.png \
    qweborf/integration/qweborf.desktop \
    qweborf/integration/qweborf_servicemenu.desktop \
    qweborf/integration/qweborf.metainfo.xml \
    qweborf/setup.py \
    qweborf/Makefile

dist-hook:
	rm -rf `find $(distdir)/ -name .git`

install-data-local:
	install -d echo $(DESTDIR)/etc/weborf.d
	ln -s ../weborf.conf $(DESTDIR)/etc/weborf.d/weborf.conf
	install -D -m644 daemon/weborf.service $(DESTDIR)/usr/lib/systemd/system/weborf.service
	install -D -m644 daemon/weborf@.service $(DESTDIR)/usr/lib/systemd/system/weborf@.service
	install -D daemon/weborf-generator $(DESTDIR)/usr/lib/systemd/system-generators/weborf-generator

install-data-hook:
	chmod a+x $(DESTDIR)$(datadir)/weborf/weborf_launcher

dist_man_MANS = weborf.1 weborf.conf.5

init_SCRIPTS = daemon/weborf

pkgdata_DATA = daemon/weborf_launcher

sysconf_DATA = weborf.conf

dist_doc_DATA = \
    CHANGELOG \
    Credits \
    README.md \
    TODOlist

TESTS = \
    testsuite/version_and_help \
    testsuite/site1http \
    testsuite/site1https \
    testsuite/ip_listener \
    testsuite/etag \
    testsuite/index_file \
    testsuite/range \
    testsuite/cgi \
    testsuite/cachedir \
    testsuite/site1mimetype \
    testsuite/vhost \
    testsuite/functions.sh