aboutsummaryrefslogtreecommitdiff
path: root/test/example_packages/makefile_complex/src/wrapper_mod.f90
blob: e8028b5d2f6ca4e089b65ddcb9ff88e604796e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module wrapper_mod
    use hello_makefile, only: say_hello_from_makefile

    implicit none
    private

    public :: do_stuff
contains
    subroutine do_stuff
        call say_hello_from_makefile
    end subroutine do_stuff
end module wrapper_mod