1#
2# Copyright (c) 2015, NVIDIA CORPORATION.  All rights reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#     http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17
18########## Make rule for test oop125  ########
19
20fcheck.o check_mod.mod: $(SRC)/check_mod.f90
21	-$(FC) -c $(FFLAGS) $(SRC)/check_mod.f90 -o fcheck.o
22
23oop125.o:  $(SRC)/oop125.f90 check_mod.mod
24	@echo ------------------------------------ building test $@
25	-$(FC) -c $(FFLAGS) $(LDFLAGS) $(SRC)/oop125.f90 -o oop125.o
26
27oop125: oop125.o fcheck.o
28	-$(FC) $(FFLAGS) $(LDFLAGS) oop125.o fcheck.o $(LIBS) -o oop125
29
30oop125.run: oop125
31	@echo ------------------------------------ executing test oop125
32	oop125
33
34### TA Expected Targets ###
35
36build: $(TEST)
37
38.PHONY: run
39run: $(TEST).run
40
41verify: ;
42
43### End of Expected Targets ###
44