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

« back to all changes in this revision

Viewing changes to examples/interface-multi-so/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
include Path.incl 
 
3
 
 
4
include $(SCIDIR)/Makefile.incl
 
5
 
 
6
all     :: Makelib 
 
7
        cd lib ; make all
 
8
        make -f Makelib
 
9
 
 
10
Makelib : builder.sce
 
11
        @echo running builder 
 
12
        @$(SCIDIR)/util/scidem $(SCIDIR) builder.sce builder.dia
 
13
 
 
14
job     : 
 
15
        make -f Makelib
 
16
 
 
17
tests   : all
 
18
        make -f Makelib tests 
 
19
 
 
20
clean   ::
 
21
        @echo Cleaning 
 
22
        @$(RM) -f -r *.o *.lo *.la *.so *.dll *.sl *.a *.dia so_locations
 
23
        @$(RM) -f -r .libs libmulti[0-9]*.c 
 
24
        @cd lib ; make clean
 
25
 
 
26
distclean:: clean 
 
27
        @$(RM) -f *.dia 
 
28
        @$(RM) -f Makelib 
 
29
        @cd lib ; make distclean 
 
30
 
 
31
 
 
32
message:
 
33
        @echo "------------------------------------------";
 
34
        @echo "At Scilab prompt, enter:";
 
35
        @echo "-->exec loader.sce";
 
36
        @echo "------------------------------------------";
 
37