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

« back to all changes in this revision

Viewing changes to examples/interface-multi-so/Makefile.mak

  • 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
SCIDIR=../../
 
2
SCIDIR1=..\..\
 
3
 
 
4
all     : Makelib.mak job message 
 
5
        nmake -f Makelib.mak
 
6
 
 
7
Makelib.mak : builder.sce
 
8
        @echo running builder 
 
9
        type builder.sce > job.sce
 
10
        echo quit >> job.sce 
 
11
        "$(SCIDIR1)\bin\scilex.exe" -nwni -f job.sce 
 
12
        del job.sce 
 
13
 
 
14
job     : 
 
15
        Makesubdirs.bat lib
 
16
        nmake -f Makelib.mak
 
17
 
 
18
clean   : 
 
19
        nmake -f Makelib.mak clean 
 
20
        Makesubdirs.bat lib-clean 
 
21
 
 
22
distclean:: clean 
 
23
        Makesubdirs.bat lib-distclean 
 
24
 
 
25
tests   : all
 
26
        nmake -f Makelib.mak tests 
 
27
 
 
28
message:
 
29
        @echo ------------------------------------------;
 
30
        @echo At Scilab prompt, enter
 
31
        @echo "-->exec loader.sce " to load the shared libraries
 
32
        @echo Type nmake /f Makefile.mak tests 
 
33
        @echo to run a test
 
34
        @echo ------------------------------------------;
 
35
 
 
36