-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
29 lines (20 loc) · 809 Bytes
/
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
default:
gfortran-7 -g -c object_class.f90
gfortran-7 -g -c string_class.f90
gfortran-7 -g -c hashtable_class.f90
gfortran-7 -g -c iterator_interface.f90
gfortran-7 -g -c collection_interface.f90
gfortran-7 -g -c abstract_collection_class.f90
gfortran-7 -g -c map_interface.f90
gfortran-7 -g -c abstract_map_class.f90
gfortran-7 -g -c hashmap_class.f90
gfortran-7 -g -c linked_list_class.f90
ar rvs libcollections.a *.o *.mod
gfortran-7 -g -c test_hashcode.f90
gfortran-7 -g -o test_hashcode test_hashcode.o libcollections.a
gfortran-7 -g -c test_hashtable.f90
gfortran-7 -g -o test_hashtable test_hashtable.o libcollections.a
gfortran-7 -g -c test_list.f90
gfortran-7 -g -o test_list test_list.o libcollections.a
clean:
rm *.o *.mod *~ *.a test_hashcode test_hashtable test_list