Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 173900 | Differences between
and this patch

Collapse All | Expand All

(-)COLAMD.orig/Makefile.am (+26 lines)
Line 0 Link Here
1
lib_LTLIBRARIES = libcolamd.la
2
noinst_LTLIBRARIES = libcolamdl.la
3
4
libcolamd_la_SOURCES = colamd.c colamd_global.c
5
libcolamd_la_LIBADD = libcolamdl.la
6
7
libcolamdl_la_SOURCES = colamd.c
8
libcolamdl_la_CFLAGS = -DDLONG
9
10
check_PROGRAMS = colamd_example colamd_l_example
11
colamd_example_SOURCES = colamd_example.c
12
colamd_example_LDADD = libcolamd.la
13
colamd_l_example_SOURCES = colamd_l_example.c
14
colamd_l_example_LDADD = libcolamd.la
15
16
include_HEADERS = colamd.h
17
EXTRA_DIST = README.txt
18
19
check-local:
20
	@for i in $(ALL_TEST); do \
21
		$$i > my_$$i.out; \
22
		- diff $$i.out my_$$i.out; \
23
	done;
24
25
clean-local:
26
	rm -f my*.out
(-)COLAMD.orig/configure.ac (+10 lines)
Line 0 Link Here
1
#                                               -*- Autoconf -*-
2
AC_PREREQ(2.59)
3
AC_INIT(colamd, 2.6.0, davis@cise.ufl.edu)
4
AM_INIT_AUTOMAKE([foreign])
5
AC_PROG_INSTALL
6
AC_PROG_LIBTOOL
7
AC_CHECK_LIB(m, sqrt)
8
AC_CONFIG_FILES([Makefile])
9
AC_OUTPUT
10

Return to bug 173900