blob: 2597abe403dce79bcde6bd1a2178c585bc6396c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
##
## -*- makefile -*-
##
## Makefile
## Made by Bruno JOFRET <bruno.jofret@inria.fr>
##
## Started on Fri Jan 5 10:19:16 2007 jofret
## Last update Mon Apr 23 15:43:36 2007 jofret
##
## Copyright INRIA 2007
##
AM_CFLAGS = -I ../../type \
-I ../includes \
-I ../../elementaryFunctions/includes
instdir = $(top_builddir)/lib
inst_LIBRARIES = libPythag.a
noinst_LIBRARIES = libPythag.a
libPythag_a_SOURCES = $(HEAD) $(SRC)
SRC = spythags.c \
dpythags.c
HEAD = ../includes/pythag.h
####
# Checking Part
####
check_INCLUDES = -I $(top_builddir)/elementaryFunctions/includes \
-I $(top_builddir)/type
check_PROGRAMS = testPythag
TESTS = testPythag
#
# -*- Pythag Tests -*-
#
testPythag_SOURCES = testPythag.c
testPythag_CFLAGS = $(check_INCLUDES)
testPythag_LDADD = $(top_builddir)/lib/libPythag.a \
@LIBMATH@
|