blob: 26ef14e5e96fa301a902d09ab9540d44e85803b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SHELL = /bin/sh
SCIDIR = ../..
include ../../Makefile.incl
info:
@echo "Type \"make tests\" in tests directory"
@echo " to test M2SCI"
@echo " SEE THE README FILE (IMPORTANT) "
tests:
$(SCIDIR)/bin/scilab -nwni -nb -f m2sci.sce
clean ::
$(SCIDIR)/bin/scilab -nwni -nb -f cleanTests.sce
distclean::
$(SCIDIR)/bin/scilab -nwni -nb -f cleanTests.sce
|