html.mk

static html creation framework using make(1) and cpp(1)
git clone git://0x30.net/html.mk
Log | Files | Refs | README | LICENSE

Makefile.example (560B)


      1 #
      2 # Sample Makefile, edit for your needs.
      3 # As is it will create `index.html' from source file `index.in'.
      4 #
      5 
      6 #
      7 # For out of tree builds, which files need copying into the object
      8 # directory.
      9 #
     10 # CP_OBJ += file_a.pdf
     11 # CP_OBJ += file_b.log
     12 
     13 #
     14 # Files to transform into HTML documents. If omitted the default `index.in'
     15 # will be used.
     16 # These MUST HAVE `.in' suffix!
     17 #
     18 # SRCS += doc_a.in
     19 # SRCS += doc_b.in
     20 
     21 #
     22 # What directories to enter after building the current one completes.
     23 #
     24 # SUBDIR += dir_a
     25 # SUBDIR += dir_b
     26 # SUBDIR += dir_c
     27 
     28 .include <bsd.html.mk>