-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (33 loc) · 1.48 KB
/
Makefile
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
###########################################################################
# #
# Usage: #
# #
# make [target] #
# #
# where target can be #
# #
# all: lib #
# exe: driver samples in tests #
# lib: blzpacklib #
# #
###########################################################################
################
include make.inc
################
.SUFFIXES:
.SUFFIXES: .f
all: lib
lib: blzpacklib
# Target blzpacklib ##################################################
blzpacklib:
(cd src; $(MAKE) )
# Target exe #########################################################
exe:
(cd tests/src; $(MAKE) )
###########################################################################
cleanall: clean cleanlib
clean:
-@rm -f src/*.o src/aux/*.o
-@rm -f tests/*.out tests/*.x tests/src/*.o
cleanlib:
-@rm -f *.a