mirror of
https://github.com/epasveer/seer.git
synced 2026-08-31 01:20:45 +08:00
17 lines
386 B
Makefile
17 lines
386 B
Makefile
.PHONY: all
|
|
all: hellodprintf
|
|
|
|
hellodprintf.o: hellodprintf.cpp
|
|
g++ -c -g hellodprintf.cpp
|
|
|
|
hellodprintf_fortran.o: hellodprintf_fortran.f
|
|
gfortran -c -g hellodprintf_fortran.f
|
|
|
|
hellodprintf: hellodprintf.o hellodprintf_fortran.o
|
|
g++ -g -o hellodprintf hellodprintf.o hellodprintf_fortran.o -lgfortran
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellodprintf hellodprintf.o hellodprintf_fortran.o
|
|
|