X-Git-Url: https://git.distorted.org.uk/~mdw/storin/blobdiff_plain/e6e0e332972586b443c9ae3d031757f6778fd263..HEAD:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 19a6acc..8697e1f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.1 2000/05/21 11:28:30 mdw Exp $ +## $Id$ ## ## Makefile for Storin distribution ## @@ -30,7 +30,7 @@ ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN -## NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +## NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, ## INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ## (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR ## SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) @@ -48,6 +48,15 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ +## Revision 1.4 2001/03/11 23:46:56 mdw +## Fixing to BibTeX stuff. +## +## Revision 1.3 2001/03/11 23:22:53 mdw +## Use BibTeX for the paper bibliography. +## +## Revision 1.2 2000/07/02 15:21:20 mdw +## Fix licence text. +## ## Revision 1.1 2000/05/21 11:28:30 mdw ## Initial check-in. ## @@ -58,10 +67,11 @@ SUFFIXES = .ps .tex .tex.ps: latex $< + bibtex $* + latex $< latex $< dvips $*.dvi -o $@ - noinst_PROGRAMS = storin-mktab storin-debug storin-tests diffan sac noinst_HEADERS = \ @@ -100,7 +110,7 @@ dist-hook: storin.ps storin.tests storin.debug EXTRA_DIST = storin.tex CLEANFILES = \ - storin-tab.h \ - *.dvi *.ps *.xyc *.log *.aux *.toc + storin-tab.h storin.debug storin.tests \ + *.dvi *.ps *.xyc *.log *.aux *.toc *.bbl *.blg ##----- That's all, folks ---------------------------------------------------