~ubuntu-branches/ubuntu/trusty/judy/trusty

« back to all changes in this revision

Viewing changes to src/Judy1/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Troy Heber
  • Date: 2005-03-22 06:55:53 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050322065553-syjpkd48r4re18dn
Tags: 1.0.1-5

* Moving LGPL link in copyright back to LGPL-2.1
* Cleanup of debian/rules: removed explicit refs to 32-bit archs, removed
  unnecessary nostrip, using --man dir to install man pages, moving from
  dh_movefiles to dh_install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES =  -I. -I.. -I../JudyCommon/ 
 
2
AM_CFLAGS = -DJUDY1 @WARN_CFLAGS@ 
 
3
 
 
4
noinst_LTLIBRARIES = libJudy1.la libnext.la libprev.la libcount.la libinline.la
 
5
 
 
6
libJudy1_la_SOURCES = Judy1Test.c Judy1Tables.c Judy1Set.c Judy1SetArray.c Judy1Unset.c Judy1Cascade.c Judy1Count.c Judy1CreateBranch.c Judy1Decascade.c Judy1First.c Judy1FreeArray.c Judy1InsertBranch.c Judy1MallocIF.c Judy1MemActive.c Judy1MemUsed.c 
 
7
 
 
8
libnext_la_SOURCES = Judy1Next.c Judy1NextEmpty.c 
 
9
libnext_la_CFLAGS = $(AM_CFLAGS) -DJUDYNEXT
 
10
 
 
11
libprev_la_SOURCES = Judy1Prev.c Judy1PrevEmpty.c 
 
12
libprev_la_CFLAGS = $(AM_CFLAGS) -DJUDYPREV
 
13
 
 
14
libcount_la_SOURCES = Judy1ByCount.c
 
15
libcount_la_CFLAGS = $(AM_CFLAGS) -DNOSMARTJBB -DNOSMARTJBU -DNOSMARTJLB
 
16
 
 
17
libinline_la_SOURCES = j__udy1Test.c
 
18
libinline_la_CFLAGS = $(AM_CFLAGS) -DJUDYGETINLINE
 
19
 
 
20
Judy1Tables.c: Judy1TablesGen.c
 
21
        $(CC) $(INCLUDES) $(AM_CFLAGS) @CFLAGS@ -o Judy1TablesGen Judy1TablesGen.c; ./Judy1TablesGen
 
22
 
 
23
 
 
24
Judy1Test.c: copies
 
25
 
 
26
copies:
 
27
        cp -f ../JudyCommon/JudyByCount.c               Judy1ByCount.c   
 
28
        cp -f ../JudyCommon/JudyCascade.c               Judy1Cascade.c
 
29
        cp -f ../JudyCommon/JudyCount.c                 Judy1Count.c
 
30
        cp -f ../JudyCommon/JudyCreateBranch.c          Judy1CreateBranch.c
 
31
        cp -f ../JudyCommon/JudyDecascade.c             Judy1Decascade.c
 
32
        cp -f ../JudyCommon/JudyDel.c                   Judy1Unset.c
 
33
        cp -f ../JudyCommon/JudyFirst.c                 Judy1First.c
 
34
        cp -f ../JudyCommon/JudyFreeArray.c             Judy1FreeArray.c
 
35
        cp -f ../JudyCommon/JudyGet.c                   Judy1Test.c
 
36
        cp -f ../JudyCommon/JudyGet.c                   j__udy1Test.c
 
37
        cp -f ../JudyCommon/JudyInsArray.c              Judy1SetArray.c
 
38
        cp -f ../JudyCommon/JudyIns.c                   Judy1Set.c
 
39
        cp -f ../JudyCommon/JudyInsertBranch.c          Judy1InsertBranch.c
 
40
        cp -f ../JudyCommon/JudyMallocIF.c              Judy1MallocIF.c
 
41
        cp -f ../JudyCommon/JudyMemActive.c             Judy1MemActive.c
 
42
        cp -f ../JudyCommon/JudyMemUsed.c               Judy1MemUsed.c
 
43
        cp -f ../JudyCommon/JudyPrevNext.c              Judy1Next.c
 
44
        cp -f ../JudyCommon/JudyPrevNext.c              Judy1Prev.c
 
45
        cp -f ../JudyCommon/JudyPrevNextEmpty.c         Judy1NextEmpty.c
 
46
        cp -f ../JudyCommon/JudyPrevNextEmpty.c         Judy1PrevEmpty.c
 
47
        cp -f ../JudyCommon/JudyTables.c                Judy1TablesGen.c
 
48