1
2
3
4
5
6
7
8
9
10
11
12
13
|
.POSIX:
ifeq (0,1)
CC=g++
CFLAGS+=-static
OCTAVE_LIBS_PATH=-L/usr/local/lib/octave
OCTAVE_LIBRARIES=-loctave -lcruft -lm -lncurses -ldl -lstdc++ -lc -lkpathsea -lreadline -lf2c
%.exe: %.cc
$(CC) $< $(CFLAGS) $(OCTAVE_LIBS_PATH) $(OCTAVE_LIBRARIES) -o $@
|
<
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
.POSIX:
CC=g++
ifeq (0,1)
CFLAGS+=-static
OCTAVE_LIBS_PATH=-L/usr/local/lib/octave
OCTAVE_LIBRARIES=-loctave -lcruft -lm -lncurses -ldl -lstdc++ -lc -lkpathsea -lreadline -lf2c
%.exe: %.cc
$(CC) $< $(CFLAGS) $(OCTAVE_LIBS_PATH) $(OCTAVE_LIBRARIES) -o $@
|
43
44
45
46
47
48
49
50
|
$(sys)_def.r:
mtt $(sys) def r
$(sys)_sympar.txt:
mtt $(sys) sympar txt
|
|
>
>
|
43
44
45
46
47
48
49
50
51
52
|
$(sys)_def.r:
mtt $(sys) def r
$(sys)_sympar.txt:
mtt $(sys) sympar txt
# struc2gnuplot_txt.exe is used by gnuplot_rep.make to create gnuplot input file.
struc2gnuplot_txt.exe: $(MTT_CC)/struc2gnuplot_txt.cc
$(CC) -O3 -Wall -ansi -pedantic -DMAIN $(MTT_CC)/struc2gnuplot_txt.cc -o $(MTTPATH)/trans/struc2gnuplot_txt.exe
|