diff options
author | Daniel Schadt <kingdread@gmx.de> | 2019-07-26 13:54:33 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2019-07-26 13:54:33 +0200 |
commit | add0390ebd1923bc44623d94b320412b1fbae84f (patch) | |
tree | 10374f5ce3499b5218b8a3d88f7322f88b1ee130 /Makefile | |
parent | 23fbc7c9987b28b2ddc9a318f2eb4af891833ff5 (diff) | |
download | open-tt-guides-add0390ebd1923bc44623d94b320412b1fbae84f.tar.gz open-tt-guides-add0390ebd1923bc44623d94b320412b1fbae84f.tar.bz2 open-tt-guides-add0390ebd1923bc44623d94b320412b1fbae84f.zip |
add README and LICENSE
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 3453fd9..0000000 --- a/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -all: pdf html - - -pdf: - mkdir -p build - pdflatex -output-directory build $(NAME).tex - pdflatex -output-directory build $(NAME).tex - -minify: - ps2pdf -dPrinted=false build/$(NAME).pdf build/$(NAME).min.pdf - -html: - mkdir -p html - -ifeq ($(findstring htmlconf.cfg,$(wildcard *.cfg)),) - $(eval HTMLCONF=) -else - $(eval HTMLCONF=--config htmlconf) -endif - make4ht -d html $(HTMLCONF) $(NAME).tex - make4ht -d html $(HTMLCONF) $(NAME).tex - cat ../custom.css >> html/$(NAME).css - rm $(NAME).4ct $(NAME).4tc $(NAME).aux $(NAME).dvi $(NAME).idv $(NAME).lg $(NAME).log $(NAME).tmp $(NAME).xref $(NAME).css $(NAME)*.html - - -.PHONY: all pdf html |