summary refs log blame commit diff
path: root/www/causal.agency/Makefile
blob: 75849db0299aba1d9be545d0ab3749cdf466917d (plain) (tree)
1
2
3
4
5
6
7
8
9
                                
 
                                                  
 
             
 
                                                              
 
           
                               


                              

                                             
      
                                              
WEBROOT = /var/www/causal.agency

FILES = index.html style.css scheme.css scheme.png

all: ${FILES}

index.html: index.7
	mandoc -T html -O style=style.css index.7 > index.html

scheme.css:
	scheme -st > scheme.css

scheme.png:
	scheme -g > scheme.png

install: ${FILES}
	install -C -m 644 ${FILES} ${WEBROOT}

clean:
	rm -f index.html scheme.css scheme.png