Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit a286e61

Browse files
committed
add Makefile
1 parent c6ac4a7 commit a286e61

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Makefile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
#
5+
# This file is licensed under the Apache License, Version 2.0 (the "License").
6+
# You may not use this file except in compliance with the License. A copy of the
7+
# License is located at
8+
#
9+
# http://aws.amazon.com/apache2.0/
10+
#
11+
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
12+
# OF ANY KIND, either express or implied. See the License for the specific
13+
# language governing permissions and limitations under the License.
14+
#
15+
# ------------------------------------------------------------------
16+
# A simple Makefile to build docs with 'make'.
17+
# ------------------------------------------------------------------
18+
all:
19+
python build_docs.py
20+
21+
html:
22+
python build_docs.py html

0 commit comments

Comments
 (0)