home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / c / gmp / tests / Makefile
Encoding:
Makefile  |  1995-02-23  |  2.2 KB  |  65 lines

  1. # Makefile for tests for GNU MP
  2.  
  3. # Copyright (C) 1991, 1993 Free Software Foundation, Inc.
  4.  
  5. # This file is part of the GNU MP Library.
  6.  
  7. # The GNU MP Library is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2, or (at your option)
  10. # any later version.
  11.  
  12. # The GNU MP Library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16.  
  17. # You should have received a copy of the GNU General Public License
  18. # along with the GNU MP Library; see the file COPYING.  If not, write to
  19. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21. CC = gcc -mstubs
  22.  
  23. TEST_LIBS = ../libgmp
  24. OPT = -O2 -DARCH
  25. CFLAGS = -I. -I.. $(OPT)
  26.  
  27. TEST_SRCS = c.tst-mul c.tst-dm c.tst-dm_ui c.tst-mdm c.tst-mdm_ui c.tst-gcd \
  28.  c.tstsqrtrem c.tstconvert
  29. TEST_OBJS = o.tst-mul o.tst-dm o.tst-dm_ui o.tst-mdm o.tst-mdm_ui o.tst-gcd \
  30.  o.tstsqrtrem o.tstconvert
  31. TESTS = tst-mul tst-dm tst-dm_ui tst-mdm tst-mdm_ui tst-gcd \
  32.  tstsqrtrem tstconvert
  33.  
  34. tests: $(TESTS)
  35.     $(dolines i,$(TESTS), run @.$i)
  36.  
  37. tst-mul: c.tst-mul 
  38.     $(CC) $(CFLAGS) -o $@ $@.c -l$(TEST_LIBS)
  39. tst-dm: c.tst-dm 
  40.     $(CC) $(CFLAGS) -o $@ $@.c -l$(TEST_LIBS)
  41. tst-dm_ui: c.tst-dm_ui
  42.     $(CC) $(CFLAGS) -o $@ $@.c -l$(TEST_LIBS)
  43. tst-mdm: c.tst-mdm
  44.     $(CC) $(CFLAGS) -o $@ $@.c -l$(TEST_LIBS)
  45. tst-mdm_ui: c.tst-mdm_ui
  46.     $(CC) $(CFLAGS) -o $@ $@.c -l$(TEST_LIBS)
  47. tst-gcd: c.tst-gcd
  48.     $(CC) $(CFLAGS) -o $@ $@.c -l$(TEST_LIBS)
  49. tstsqrtrem: c.tstsqrtrem
  50.     $(CC) $(CFLAGS) -o $@ $@.c -l$(TEST_LIBS)
  51. tstconvert: c.tstconvert
  52.     $(CC) $(CFLAGS) -o $@ $@.c -l$(TEST_LIBS)
  53.  
  54. $(TEST_PREFIX)clean:
  55.     rm -f $(TESTS) $(TEST_OBJS)
  56.  
  57. o.tstconvert : c.tstconvert ^.h.gmp h.urandom 
  58. o.tst-dm : c.tst-dm ^.h.gmp h.urandom 
  59. o.tst-dm_ui : c.tst-dm_ui ^.h.gmp h.urandom 
  60. o.tst-gcd : c.tst-gcd ^.h.gmp h.urandom 
  61. o.tst-mdm : c.tst-mdm ^.h.gmp h.urandom 
  62. o.tst-mdm_ui : c.tst-mdm_ui ^.h.gmp h.urandom 
  63. o.tst-mul : c.tst-mul ^.h.gmp ^.h.gmp-impl ^.h.gmp-mparam ^.h.longlong h.urandom 
  64. o.tstsqrtrem : c.tstsqrtrem ^.h.gmp h.urandom 
  65.