Skip to content
Snippets Groups Projects

Clean up the repository

Merged Sergey Kosukhin requested to merge clean-up into master
10 files
+ 15
277
Compare changes
  • Side-by-side
  • Inline
Files
10
+ 0
24
# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
.PHONY: clean tests
SRCS = $(wildcard *.pf)
OBJS = $(SRCS:.pf=$(OBJ_EXT))
tests: $(OBJS)
testSuites.inc: $(SRCS)
FFLAGS += -I$(SRC_DIR) -I$(PFUNIT)/mod
%.F90: %.pf
$(PFUNIT)/bin/pFUnitParser.py $< $@
%$(OBJ_EXT): %.F90
$(F90) -c $(FFLAGS) $<
clean:
$(RM) *.o *.mod
Loading