34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
DEFINES = -DSTANDALONE -DOCTAVE_DEV
endif
all: $(SYS)_standalone.$(LANG)
$(SYS)_standalone.exe: $(SYS)_ode2odes.cc $(SYS)_def.h $(SYS)_sympar.h
cp $(MTT_LIB)/cc/*.cc .
$(CXX) *.cc -o $@ $(CXXFLAGS) $(INCLUDES) $(LIBOCTAVE) $(LIBKPATHSEA) $(LIBREADLINE) $(LIBBLAS) $(LIBF2C) $(LIBRARIES)
.PHONY: $(SYS)_standalone.clean
$(SYS)_ode2odes.cc:
mtt $(MTTFLAGS) $(SYS) ode2odes m
|
>
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
DEFINES = -DSTANDALONE -DOCTAVE_DEV
endif
all: $(SYS)_standalone.$(LANG)
$(SYS)_standalone.exe: $(SYS)_ode2odes.cc $(SYS)_def.h $(SYS)_sympar.h
cp $(MTT_LIB)/cc/*.cc .
echo Creating $(SYS)_standalone.exe
$(CXX) *.cc -o $@ $(CXXFLAGS) $(INCLUDES) $(LIBOCTAVE) $(LIBKPATHSEA) $(LIBREADLINE) $(LIBBLAS) $(LIBF2C) $(LIBRARIES)
.PHONY: $(SYS)_standalone.clean
$(SYS)_ode2odes.cc:
mtt $(MTTFLAGS) $(SYS) ode2odes m
|