~ubuntu-branches/ubuntu/precise/graphviz/precise-security

« back to all changes in this revision

Viewing changes to lib/patchwork/Makefile.old

  • Committer: Bazaar Package Importer
  • Author(s): David Claughton
  • Date: 2010-03-24 22:45:18 UTC
  • mfrom: (1.2.7 upstream) (6.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100324224518-do441tthbqjaqjzd
Tags: 2.26.3-4
Add patch to fix segfault in circo. Backported from upstream snapshot
release.  Thanks to Francis Russell for his work on this.
(Closes: #575255)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
all:    libpatchwork.a
 
2
ROOT=../..
 
3
include $(ROOT)/Config.mk
 
4
include $(ROOT)/makearch/$(ARCH)
 
5
 
 
6
INCS =  -I. -I$(ROOT) \
 
7
        -I../common \
 
8
        -I../neatogen \
 
9
        -I../sparse \
 
10
        -I../pack \
 
11
        -I../gvc \
 
12
        -I../fdpgen \
 
13
        -I../pathplan \
 
14
        -I../graph \
 
15
        -I../cdt \
 
16
        -I../gd
 
17
 
 
18
DEFINES = -DHAVE_CONFIG_H
 
19
 
 
20
OBJS = patchworkinit.o patchwork.o 
 
21
 
 
22
HFILES = patchwork.h 
 
23
 
 
24
libpatchwork.a : $(OBJS)
 
25
        $(RM) libpatchwork.a
 
26
        $(AR) cr libpatchwork.a $(OBJS)
 
27
        $(RANLIB) libpatchwork.a
 
28
 
 
29
$(OBJS) : $(HFILES) ../common/types.h
 
30
 
 
31
install: libpatchwork.a
 
32
        $(MKPATH) $(LIBDIR)
 
33
        $(INSTALL) libpatchwork.a $(LIBDIR)
 
34
 
 
35
clean:
 
36
        $(RM) *.o core
 
37
 
 
38
distclean: clean
 
39
        $(RM) *.a lib*.so.*