This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed f5a94d7 with MkDocs version: 1.5.3
- Loading branch information
Unknown
committed
Feb 14, 2024
0 parents
commit 3e13c32
Showing
329 changed files
with
68,280 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright (c) 2023 Humanitarian OpenStreetMap Team | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Affero General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
|
||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU Affero General Public License for more details. | ||
|
||
# You should have received a copy of the GNU Affero General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
# Humanitarian OpenStreetmap Team | ||
# 1100 13th Street NW Suite 800 Washington, D.C. 20005 | ||
# <[email protected]> | ||
|
||
PACKAGE := org.tm-admin.py | ||
NAME := tm-admin | ||
VERSION := 0.1.0 | ||
|
||
DRAW := $(wildcard E2E/*.odt) | ||
PNGS := $(DRAW:.odt=.png) | ||
PDFS := $(DRAW:.odt=.pdf) | ||
|
||
# Automate the building of pngs and pdfs from the libreoffice draw | ||
# source files, insted of having to commit both to git after | ||
# any changes. | ||
all: pngs pdfs | ||
@echo "$(DRAW)" | ||
|
||
pngs: $(PNGS) | ||
|
||
pdfs: $(PDFS) | ||
|
||
apidoc: | ||
-@doxygen | ||
|
||
%.png: %.odt | ||
@echo "Generating $@ file for use in Markdown files" | ||
-libreoffice --draw --headless --convert-to png "$<" | ||
# -@mv *Profile.png images/ | ||
|
||
%.pdf: %.odt | ||
@echo "Generating $@ file for use in Markdown files" | ||
-libreoffice --draw --headless --convert-to pdf "$<" | ||
# -@mv *Profile.png images | ||
|
||
clean: | ||
-$(RM) *.png *.pdf | ||
|
||
force: |
Oops, something went wrong.