1#
2# Copyright (c) 2017, 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#
16do05: do05.$(OBJX)
17	@echo ------------ executing test $@
18	-$(RUN4) ./a.$(EXESUFFIX) $(LOG)
19do05.$(OBJX): $(SRC)/do05.f check.$(OBJX)
20	@echo ------------ building test $@
21	-$(FC) $(FFLAGS) $(SRC)/do05.f
22	@$(RM) ./a.$(EXESUFFIX)
23	-$(FC) $(LDFLAGS) do05.$(OBJX) check.$(OBJX) $(LIBS) -o a.$(EXESUFFIX)
24build: do05
25run: ;
26