URI: 
       Makefile - cl-yag - Common Lisp Yet Another website Generator
  HTML git clone git://bitreich.org/cl-yag/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/cl-yag/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
       Makefile (315B)
       ---
            1 LISP=          ecl
            2 
            3 all: dirs html
            4 
            5 html: $(HTML) css
            6         $(LISP) --load generator.lisp
            7 
            8 dirs:
            9         mkdir -p "output/html/static"
           10         mkdir -p "output/gopher"
           11         mkdir -p "output/gemini/articles/"
           12 
           13 
           14 clean:
           15         rm -fr output/html/* output/gopher/* "temp"
           16 
           17 css:
           18         mkdir -p "output/html/static"
           19         cp -fr static/* "output/html/static/"