## -*-makefile-*- ## ## $Id: Makefile.am,v 1.1 2000/05/21 11:28:30 mdw Exp $ ## ## Makefile for Storin distribution ## ## (c) 2000 Mark Wooding ## ##----- Licensing notice ---------------------------------------------------- ## ## Copyright (c) 2000 Mark Wooding ## All rights reserved. ## ## Redistribution and use in source and binary forms, with or without ## modification, are permitted provided that the following conditions are ## met: ## ## 1. Redistributions of source code must retain the above copyright ## notice, this list of conditions and the following disclaimer. ## ## 2, Redistributions in binary form must reproduce the above copyright ## notice, this list of conditions and the following disclaimer in the ## documentation and/or other materials provided with the distribution. ## ## 3. The name of the authors may not be used to endorse or promote ## products derived from this software without specific prior written ## permission. ## ## 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, ## 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) ## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, ## STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ## ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE ## POSSIBILITY OF SUCH DAMAGE. ## ## Instead of accepting the above terms, you may redistribute and/or modify ## this software under the terms of either the GNU General Public License, ## or the GNU Library General Public License, published by the Free ## Software Foundation; either version 2 of the License, or (at your ## option) any later version. ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ ## Revision 1.1 2000/05/21 11:28:30 mdw ## Initial check-in. ## AUTOMAKE_OPTIONS = foreign SUFFIXES = .ps .tex .tex.ps: latex $< latex $< dvips $*.dvi -o $@ noinst_PROGRAMS = storin-mktab storin-debug storin-tests diffan sac noinst_HEADERS = \ bits.h arith24.h matrix.h storin.h \ sym.h dsarand.h fibrand.h lcrand.h sha.h all: storin.ps storin.tests storin.debug storin-debug.o: storin.o $(COMPILE) -DDEBUG $(srcdir)/storin.c -c -o storin-debug.o storin_debug_SOURCES = arith24.c matrix.c storin_debug_LDADD = storin-debug.o storin_mktab_SOURCES = arith24.c matrix.c dsarand.c sha.c storin-mktab.c storin_tests_SOURCES = arith24.c matrix.c storin.c fibrand.c lcrand.c storin-tests.c diffan_SOURCES = arith24.c matrix.c sym.c fibrand.c lcrand.c diffan.c sac_SOURCES = arith24.c matrix.c fibrand.c lcrand.c sac.c sac_LDADD = -lm storin.o diffan.o sac.o: storin-tab.h storin-tab.h: storin-mktab ./storin-mktab >storin-tab.h storin.tests: storin-tests ./storin-tests >storin.tests storin.debug: storin-debug ./storin-debug >storin.debug dist-hook: storin.ps storin.tests storin.debug @ln storin.ps $(distdir) || ln $(srcdir)/storin.ps $(distdir) @ln storin.tests $(distdir) || ln $(srcdir)/storin.tests $(distdir) @ln storin.debug $(distdir) || ln $(srcdir)/storin.debug $(distdir) EXTRA_DIST = storin.tex CLEANFILES = \ storin-tab.h \ *.dvi *.ps *.xyc *.log *.aux *.toc ##----- That's all, folks ---------------------------------------------------