Skip to content
Snippets Groups Projects
Select Git revision
  • 41c17afab4529a712b4b5cb4aaf0f294f7b55b75
  • quarto-refactor default
  • main protected
  • master
4 results

Makefile

Blame
  • Forked from CAN / UNIX command line
    137 commits behind the upstream repository.
    Makefile 550 B
    all: index.html 1_understanding_a_computer.html 2_first_steps_in_a_terminal.html
    
    index.html: index.md github-pandoc.css
    	pandoc -s -c github-pandoc.css index.md -o index.html
    
    1_understanding_a_computer.html: 1_understanding_a_computer.md github-pandoc.css
    	pandoc -s --toc -c github-pandoc.css 1_understanding_a_computer.md -o 1_understanding_a_computer.html
    
    2_first_steps_in_a_terminal.html: 2_first_steps_in_a_terminal.md github-pandoc.css
    	pandoc -s --toc -c github-pandoc.css 2_first_steps_in_a_terminal.md -o 2_first_steps_in_a_terminal.html