blob: 99974246e7f429d7aad32d452fa3e407e6b6a76d [file] [log] [blame]
Minos Galanakisf4ca6ac2017-12-11 02:39:21 +01001# -----------------------------------------------------------------------------\
2# Copyright (c) 2017-2019, Arm Limited and Contributors. All rights reserved. \
3# \
4# SPDX-License-Identifier: BSD-3-Clause \
5# \
6------------------------------------------------------------------------------*/
7
8.PHONY: all
9
10COMPR=7z
11
12ifeq ($(OS),Windows_NT)
13COMPR=7z.exe
14endif
15
16COMPR_FLAGS=a -tzip
17
18git_hash:=$(shell git log --format="%cd_%h" --date=short -n 1)
19
20archive_name=html_${git_hash}.zip
21
22.PHONY: all
23all: html zip
24
25html:
26 doxygen Doxyfile
27
28zip: ${archive_name}
29
30${archive_name}: html
31 "${COMPR}" ${COMPR_FLAGS} $@ $?
32
33.PHONY: clean
34clean:
35 -rm html_*.zip
36 -rm -rf html