Skip to content
Snippets Groups Projects
Makefile 583 B
Newer Older
  • Learn to ignore specific revisions
  • teuben's avatar
    teuben committed
    # webpage update
    RDIR = teuben@apus:/apus1/nemo/local/www/amnh
    EXPORT = partiview*html partiview.ps partiview.sgml partiview.txt
    
    help:
    	@echo all:  ps html
    	@echo export: copy EXPORT to RDIR
    	@echo ""
    	@echo EXPORT=$(EXPORT)
    	@echo RDIR=$(RDIR)
    
    .PHONY:  txt ps html
    
    all:    txt ps html 
    
    txt:
    	sgml2txt partiview.sgml
    
    ps:
    	sgml2latex partiview.sgml
    	dvips partiview -o
    
    	gzip -c partiview.ps > partiview.ps.gz
    
    teuben's avatar
    teuben committed
    	rm partiview.dvi
    
    teuben's avatar
    teuben committed
    
    html:
    	sgml2html partiview.sgml
    
    
    teuben's avatar
    teuben committed
    clean:
    
    	rm -f core *~  partiview.dvi partiview.ps
    
    teuben's avatar
    teuben committed
    
    
    teuben's avatar
    teuben committed
    
    # merely to update my webpage
    
    export:
    	scp -C $(EXPORT) $(RDIR)