~ubuntu-branches/debian/squeeze/ntp/squeeze-201010051545

« back to all changes in this revision

Viewing changes to librsaref/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Matt Zimmerman
  • Date: 2004-10-11 16:10:27 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041011161027-icyjbji8ujym633o
Tags: 1:4.2.0a-10ubuntu2
Use ntp.ubuntulinux.org instead of pool.ntp.org

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#AUTOMAKE_OPTIONS = ../util/ansi2knr no-dependencies
2
 
#AUTOMAKE_OPTIONS = ../util/ansi2knr
3
 
noinst_LIBRARIES = @MAKE_LIBRSAREF@
4
 
EXTRA_LIBRARIES = librsaref.a
5
 
CLEANFILES = $(EXTRA_LIBRARIES)
6
 
 
7
 
# NOTES:
8
 
# don't use RSAREF's global.h - we use ours.
9
 
 
10
 
nodist_librsaref_a_SOURCES = \
11
 
        desc.c \
12
 
        md2c.c \
13
 
        md5c.c \
14
 
        nn.c \
15
 
        prime.c \
16
 
        r_dh.c \
17
 
        r_encode.c \
18
 
        r_enhanc.c \
19
 
        r_keygen.c \
20
 
        r_random.c \
21
 
        r_stdlib.c \
22
 
        rsa.c \
23
 
        des.h \
24
 
        md2.h \
25
 
        md5.h \
26
 
        nn.h \
27
 
        prime.h \
28
 
        r_random.h \
29
 
        rsa.h \
30
 
        rsaref.h @RSASRCS@
31
 
 
32
 
librsaref_a_LIBADD = @RSAOBJS@
33
 
librsaref_a_DEPENDENCIES = $(librsaref_a_LIBADD)
34
 
 
35
 
BUILT_SOURCES = $(nodist_librsaref_a_SOURCES)
36
 
INCLUDES = -I$(top_srcdir)/include
37
 
ETAGS_ARGS = Makefile.am
38
 
 
39
 
DISTCLEANFILES = $(nodist_librsaref_a_SOURCES) stamp-rsaref
40
 
 
41
 
#EXTRA_DIST = 
42
 
 
43
 
$(nodist_librsaref_a_SOURCES): stamp-rsaref
44
 
 
45
 
stamp-rsaref:
46
 
        @rm -f stamp-rsaref stamp-rsarefT
47
 
        @echo timestamp > stamp-rsarefT 2> /dev/null
48
 
        for i in $(nodist_librsaref_a_SOURCES); do \
49
 
            case "@MAKE_LIBRSAREF@" in \
50
 
             '') touch $$i ;; \
51
 
             *) case "$$i" in \
52
 
                 *.h) r_dst=$(srcdir)/$$i ;; \
53
 
                 *)   r_dst=$$i ;; \
54
 
                esac ; \
55
 
                cmp -s $${r_dst} $(srcdir)/../@RSADIR@/source/$$i 2>/dev/null \
56
 
                        || cp $(srcdir)/../@RSADIR@/source/$$i $${r_dst} ;; \
57
 
            esac ; \
58
 
        done
59
 
        @echo timestamp > stamp-rsarefT 2> /dev/null
60
 
        @mv stamp-rsarefT stamp-rsaref