summaryrefslogtreecommitdiffstats
path: root/install/ui/build/freeipa/Makefile.am
blob: 05e82f4dab2999b459f4992e1b2be42066560c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
NULL =

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

CLEANFILES = $(nodist_app_DATA)

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

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)
	$(srcdir)/../../util/make-ui.sh

core.js: app.js