aboutsummaryrefslogtreecommitdiff
path: root/test/example_packages/with_makefile/src/hello_makefile.f90
blob: 2d4d1a2fa0d600b64bf7664b28a0c286ee70ee12 (plain)
1
2
3
4
5
6
7
8
9
10
module hello_makefile
    implicit none
    private

    public :: say_hello_from_makefile
contains
    subroutine say_hello_from_makefile()
        print *, "Hello from Makefile library!"
    end subroutine say_hello_from_makefile
end module hello_makefile