blob: e3276741f3387e6240f46a779fbf9db487670d10 (
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
|
AUTOMAKE_OPTIONS = 1.7
NULL =
SUBDIRS = \
build \
ext \
images \
src \
$(NULL)
appdir = $(IPA_DATA_DIR)/ui
app_DATA = \
config.js \
favicon.ico \
index.html \
jquery-ui.css \
ie.css \
ipa.css \
login.html \
login.js \
logout.html \
overpass_bold-web.eot \
overpass_bold-web.svg \
overpass_bold-web.ttf \
overpass_bold-web.woff \
overpass_regular-web.eot \
overpass_regular-web.svg \
overpass_regular-web.ttf \
overpass_regular-web.woff \
reset_password.js \
reset_password.html \
$(NULL)
EXTRA_DIST = \
$(app_DATA) \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
Makefile.in
$(NULL)
|