~ubuntu-branches/ubuntu/raring/bc/raring-proposed

« back to all changes in this revision

Viewing changes to lib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): John Hasler
  • Date: 2007-12-02 14:46:56 UTC
  • mto: (3.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20071202144656-vz98qh9dd1zwdyny
Tags: upstream-1.06.94
ImportĀ upstreamĀ versionĀ 1.06.94

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
noinst_LIBRARIES = libbc.a
 
3
bin_PROGRAMS = testmul
3
4
 
4
5
INCLUDES = -I. -I.. -I$(srcdir)/../h
5
6
 
7
8
 
8
9
DEFS = @DEFS@ $(DEFSADD)
9
10
 
10
 
CFLAGS = @CFLAGS@ -Wall -funsigned-char
 
11
AM_CFLAGS = @CFLAGS@
11
12
 
12
13
MAINTAINERCLEANFILES = Makefile.in number.c
13
14
 
16
17
 
17
18
muldigits.h: testmul
18
19
        @echo "The following may take up to 10 minutes."
19
 
        testmul > muldigits.h
 
20
        ./testmul > muldigits.h
20
21
 
21
22
testmul: testmul.o number.o
22
23
        $(CC) $(CFLAGS) -o testmul testmul.o number.o