Skip to content

Commit 65d8d59

Browse files
committed
Move Makefile -> Makefile.manual
So that it does not conflict with CMake generated makefiles. To use them, execute make with: make -f Makefile.manual
1 parent 9dfeec2 commit 65d8d59

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

Makefile

Lines changed: 0 additions & 18 deletions
This file was deleted.

Makefile.manual

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Fortran stdlib Makefile
2+
3+
FC = gfortran
4+
FCFLAGS=-O0
5+
6+
.PHONY: all clean
7+
8+
all: stdlib tests
9+
10+
stdlib:
11+
$(MAKE) -f Makefile.manual FC=${FC} FCFLAGS=${FCFLAGS} --directory=src/lib
12+
13+
tests: stdlib
14+
$(MAKE) -f Makefile.manual FC=${FC} FCFLAGS=${FCFLAGS} --directory=src/tests
15+
16+
clean:
17+
$(MAKE) -f Makefile.manual clean --directory=src/lib
18+
$(MAKE) -f Makefile.manual clean --directory=src/tests
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)