1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
IMPLMODULESRCS = sort_CompInt_Mod.F90 sort_HeapSort_Mod.F90 \
sort_IntegerContainer_Mod.F90 sort_Integer_Mod.F90 sort_MergeSort_Mod.F90 \
sort_QuickSort_Mod.F90 sort_SimpleCounter_Mod.F90 sort_SortTest_Mod.F90 \
sort_SortingAlgorithm_Mod.F90
IMPLSRCS = sort_CompInt_Impl.F90 sort_HeapSort_Impl.F90 \
sort_IntegerContainer_Impl.F90 sort_Integer_Impl.F90 \
sort_MergeSort_Impl.F90 sort_QuickSort_Impl.F90 sort_SimpleCounter_Impl.F90 \
sort_SortTest_Impl.F90 sort_SortingAlgorithm_Impl.F90
IORHDRS = sort_CompInt_IOR.h sort_Comparator_IOR.h sort_Container_IOR.h \
sort_Counter_IOR.h sort_HeapSort_IOR.h sort_IOR.h \
sort_IntegerContainer_IOR.h sort_Integer_IOR.h sort_MergeSort_IOR.h \
sort_QuickSort_IOR.h sort_SimpleCounter_IOR.h sort_SortTest_IOR.h \
sort_SortingAlgorithm_IOR.h
IORSRCS = sort_CompInt_IOR.c sort_HeapSort_IOR.c sort_IntegerContainer_IOR.c \
sort_Integer_IOR.c sort_MergeSort_IOR.c sort_QuickSort_IOR.c \
sort_SimpleCounter_IOR.c sort_SortTest_IOR.c sort_SortingAlgorithm_IOR.c
SKELSRCS = sort_CompInt_fSkel.c sort_HeapSort_fSkel.c \
sort_IntegerContainer_fSkel.c sort_Integer_fSkel.c sort_MergeSort_fSkel.c \
sort_QuickSort_fSkel.c sort_SimpleCounter_fSkel.c sort_SortTest_fSkel.c \
sort_SortingAlgorithm_fSkel.c
STUBHDRS = sort_CompInt_fAbbrev.h sort_Comparator_fAbbrev.h \
sort_Container_fAbbrev.h sort_Counter_fAbbrev.h sort_HeapSort_fAbbrev.h \
sort_IntegerContainer_fAbbrev.h sort_Integer_fAbbrev.h \
sort_MergeSort_fAbbrev.h sort_QuickSort_fAbbrev.h \
sort_SimpleCounter_fAbbrev.h sort_SortTest_fAbbrev.h \
sort_SortingAlgorithm_fAbbrev.h
STUBMODULESRCS = sort_CompInt.F90 sort_Comparator.F90 sort_Container.F90 \
sort_Counter.F90 sort_HeapSort.F90 sort_Integer.F90 \
sort_IntegerContainer.F90 sort_MergeSort.F90 sort_QuickSort.F90 \
sort_SimpleCounter.F90 sort_SortTest.F90 sort_SortingAlgorithm.F90
STUBSRCS = sort_CompInt_fStub.c sort_Comparator_fStub.c \
sort_Container_fStub.c sort_Counter_fStub.c sort_HeapSort_fStub.c \
sort_IntegerContainer_fStub.c sort_Integer_fStub.c sort_MergeSort_fStub.c \
sort_QuickSort_fStub.c sort_SimpleCounter_fStub.c sort_SortTest_fStub.c \
sort_SortingAlgorithm_fStub.c
TYPEMODULESRCS = sort_CompInt_type.F90 sort_Comparator_type.F90 \
sort_Container_type.F90 sort_Counter_type.F90 sort_HeapSort_type.F90 \
sort_IntegerContainer_type.F90 sort_Integer_type.F90 \
sort_MergeSort_type.F90 sort_QuickSort_type.F90 sort_SimpleCounter_type.F90 \
sort_SortTest_type.F90 sort_SortingAlgorithm_type.F90
|