debian-koji/www/static/js/Makefile
Mike Bonnet 277b07a76b Fix the "Watch logs" feature in the web UI to work over SSL
- reimplemented by parsing plain text from the web UI instead of performing xmlrpc from JavaScript
  - removed dependency on the unmaintained jsolait JavaScript libraries
2009-01-14 13:34:04 -05:00

18 lines
332 B
Makefile

SERVERDIR = /js
FILES = $(wildcard *.js)
_default:
@echo "nothing to make. try make install"
clean:
rm -f *.o *.so *.pyc *~
install:
@if [ "$(DESTDIR)" = "" ]; then \
echo " "; \
echo "ERROR: A destdir is required"; \
exit 1; \
fi
mkdir -p $(DESTDIR)/$(SERVERDIR)
install -p -m 644 $(FILES) $(DESTDIR)/$(SERVERDIR)