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
|
IMPLHDRS = sort_CompInt_Impl.h sort_HeapSort_Impl.h \
sort_IntegerContainer_Impl.h sort_Integer_Impl.h sort_MergeSort_Impl.h \
sort_QuickSort_Impl.h sort_SimpleCounter_Impl.h sort_SortTest_Impl.h \
sort_SortingAlgorithm_Impl.h
IMPLSRCS = sort_CompInt_Impl.c sort_HeapSort_Impl.c \
sort_IntegerContainer_Impl.c sort_Integer_Impl.c sort_MergeSort_Impl.c \
sort_QuickSort_Impl.c sort_SimpleCounter_Impl.c sort_SortTest_Impl.c \
sort_SortingAlgorithm_Impl.c
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_Skel.c sort_HeapSort_Skel.c \
sort_IntegerContainer_Skel.c sort_Integer_Skel.c sort_MergeSort_Skel.c \
sort_QuickSort_Skel.c sort_SimpleCounter_Skel.c sort_SortTest_Skel.c \
sort_SortingAlgorithm_Skel.c
STUBHDRS = sort.h sort_CompInt.h sort_Comparator.h sort_Container.h \
sort_Counter.h sort_HeapSort.h sort_Integer.h sort_IntegerContainer.h \
sort_MergeSort.h sort_QuickSort.h sort_SimpleCounter.h sort_SortTest.h \
sort_SortingAlgorithm.h
STUBSRCS = sort_CompInt_Stub.c sort_Comparator_Stub.c sort_Container_Stub.c \
sort_Counter_Stub.c sort_HeapSort_Stub.c sort_IntegerContainer_Stub.c \
sort_Integer_Stub.c sort_MergeSort_Stub.c sort_QuickSort_Stub.c \
sort_SimpleCounter_Stub.c sort_SortTest_Stub.c sort_SortingAlgorithm_Stub.c
|