mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 15:40:01 -06:00
d796c37f17
python3 -m lesscpy now works correctly. The make-css.sh script is replaced with a simpler make call and ipa.css now depends on all less files. Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com>
25 lines
438 B
Makefile
25 lines
438 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) \
|
|
$(wildcard ../less/*/*.less) \
|
|
$(NULL)
|
|
|
|
ipa.css: $(ipa)
|
|
$(PYTHON) -m lesscpy -x ../less/ipa.less > $@
|