summaryrefslogtreecommitdiffstats
path: root/install/ui/build/freeipa/Makefile.am
blob: 0543872e65ec08f981d190fe5c223901b80e8015 (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
NULL =

appdir = $(IPA_DATA_DIR)/ui/js/freeipa
app_DATA =				\
	app.js 				\
	core.js 			\
	$(NULL)

EXTRA_DIST =                            \
        $(app_DATA)                     \
        $(NULL)

MAINTAINERCLEANFILES =                  \
        *~                              \
        Makefile.in

core := $(wildcard ../../src/freeipa/*.js)
base := $(wildcard ../../src/freeipa/_base/*.js)
widgets := $(wildcard ../../src/freeipa/widgets/*.js)
nav := $(wildcard ../../src/freeipa/navigation/*.js)

app.js: $(core) $(base) $(widgets) $(nav)
	../../util/make-ui.sh

core.js: app.js