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

« back to all changes in this revision

Viewing changes to lib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): John G. Hasler
  • Date: 2009-10-15 12:17:23 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091015121723-m7ve86o6ys2ud0eg
Tags: 1.06.95-2
Fixed errors in debian/rules that prevented info files from
being correctly generated.

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
4
3
 
5
4
INCLUDES = -I. -I.. -I$(srcdir)/../h
6
5
 
11
10
AM_CFLAGS = @CFLAGS@
12
11
 
13
12
MAINTAINERCLEANFILES = Makefile.in number.c
 
13
CLEANFILES = testmul specialnumber muldigits.h
14
14
 
15
15
newnumber.o: number.c muldigits.h
16
16
        $(CC) $(CFLAGS) $(INCLUDES) -c -DMULDIGITS -o newnumber.o $(srcdir)/number.c
24
24
 
25
25
specialnumber: newnumber.o
26
26
        cp newnumber.o number.o
27