mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-14 02:11:56 -06:00
6b9977f041
Some of .less files included by ipa.less were not listed in the Makefile.am so some changes might not trigger rebuild. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
26 lines
507 B
Makefile
26 lines
507 B
Makefile
NULL =
|
|
|
|
appdir = $(IPA_DATA_DIR)/ui/css
|
|
app_DATA = \
|
|
bootstrap-datepicker3.min.css \
|
|
patternfly.css \
|
|
$(NULL)
|
|
|
|
nodist_app_DATA = \
|
|
ipa.css
|
|
|
|
CLEANFILES = $(nodist_app_DATA)
|
|
|
|
EXTRA_DIST = \
|
|
$(app_DATA) \
|
|
$(NULL)
|
|
|
|
ipa := $(wildcard ../less/*.less) \
|
|
../less/font-awesome/variables.less \
|
|
../less/patternfly/variables.less \
|
|
../less/bootstrap/variables.less \
|
|
../less/variables.less
|
|
|
|
ipa.css: $(ipa)
|
|
$(srcdir)/../util/make-css.sh
|