forked from SLICOT/SLICOT-Reference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile_Unix
More file actions
51 lines (44 loc) · 1.6 KB
/
makefile_Unix
File metadata and controls
51 lines (44 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
####################################################################
# SLICOT main makefile for Unix-like machines #
# Top Level Makefile for generating SLICOT Library object file, #
# and linking and running the example programs. #
# #
# SLICOT, Release 5.8 ./slicot/makefile #
# Vasile Sima #
# October 31, 1996 #
# Revised Dec. 7, 1999; Feb. 14, 2005, Dec. 28, 2022. #
####################################################################
#
# This makefile creates/updates the SLICOT Library object file,
# and compiles, links, and runs the example programs for the
# SLICOT Library. To perform all these actions, enter
# make
#
# To create/update the library for SLICOT, enter
# make lib
#
# To compile, link, and run the example programs, enter
# make example
#
# To remove the object files for SLICOT routines, enter
# make cleanlib
#
# To remove the files with the computed results (*.exa), enter
# make cleanexample
#
# To remove the object files for SLICOT routines, as well as the
# files with the computed results (*.exa), enter
# make clean
#
####################################################################
include make_Unix.inc
all: lib example
clean: cleanlib cleanexample
lib:
( cd src; $(MAKE) )
example:
( cd examples; $(MAKE) )
cleanlib:
( cd src; $(MAKE) clean )
cleanexample:
( cd examples; $(MAKE) clean )