forked from lix-project/hydra
31 lines
873 B
Makefile
31 lines
873 B
Makefile
TEMPLATES = $(wildcard *.tt)
|
|
STATIC = \
|
|
$(wildcard static/images/*) \
|
|
$(wildcard static/css/*)
|
|
|
|
FLOT = flot-0.6.zip
|
|
TABLESORTER = jquery.tablesorter.zip
|
|
JQUERY = jquery-ui-1.8.5.custom.zip
|
|
BOOTSTRAP = bootstrap.zip
|
|
|
|
ZIPS = $(FLOT) $(TABLESORTER) $(JQUERY) $(BOOTSTRAP)
|
|
|
|
EXTRA_DIST = $(TEMPLATES) $(STATIC) $(ZIPS)
|
|
|
|
hydradir = $(libexecdir)/hydra/root
|
|
nobase_hydra_DATA = $(EXTRA_DIST)
|
|
|
|
all:
|
|
mkdir -p $(srcdir)/static/js
|
|
unzip -u -d $(srcdir)/static/js/jquery $(JQUERY)
|
|
unzip -u -d $(srcdir)/static $(BOOTSTRAP)
|
|
rm -rf $(srcdir)/static/js/tablesorter
|
|
unzip -u -d $(srcdir)/static/js $(TABLESORTER)
|
|
unzip -u -d $(srcdir)/static/js $(FLOT)
|
|
|
|
install-data-local: $(ZIPS)
|
|
mkdir -p $(hydradir)/static/js
|
|
cp -prvd $(srcdir)/static/js/* $(hydradir)/static/js
|
|
mkdir -p $(hydradir)/static/bootstrap
|
|
cp -prvd $(srcdir)/static/bootstrap/* $(hydradir)/static/bootstrap
|