~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to pvm3/tracer/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# $Id: Makefile,v 1.1 2002/10/14 15:00:40 chanceli Exp $
 
3
#
 
4
 
 
5
PVMDIR          =       $(PVM_ROOT)
 
6
 
 
7
#CC                     =       cc
 
8
#CFLOPTS        =       -g
 
9
 
 
10
PVMOPTS         =       CC=$(CC) CFLOPTS=$(CFLOPTS) PVMDIR=$(PVMDIR)
 
11
 
 
12
default: local
 
13
 
 
14
install:
 
15
        $(PVMDIR)/lib/aimk $(PVMOPTS) install
 
16
        @ ctags -w *.c *.h &
 
17
 
 
18
local:
 
19
        $(PVMDIR)/lib/aimk $(PVMOPTS) local
 
20
        @ ctags -w *.c *.h &
 
21
 
 
22
objs:
 
23
        $(PVMDIR)/lib/aimk $(PVMOPTS) objs
 
24
 
 
25
again:
 
26
        $(PVMDIR)/lib/aimk $(PVMOPTS) again
 
27
 
 
28
clean:
 
29
        $(PVMDIR)/lib/aimk clean
 
30
 
 
31
veryclean:
 
32
        $(PVMDIR)/lib/aimk veryclean
 
33