-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·65 lines (49 loc) · 1.54 KB
/
Makefile
File metadata and controls
executable file
·65 lines (49 loc) · 1.54 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
TestVector : TestVector.C
g++ TestVector.C -o TestVector
TestOrderedVector : TestOrderedVector.C
g++ TestOrderedVector.C -o TestOrderedVector
TestSNode : TestSNode.C
g++ TestSNode.C -o TestSNode
TestSList : TestSList.C
g++ TestSList.C -o TestSList
TestDNode : TestDNode.C
g++ TestDNode.C -o TestDNode
TestDList : TestDList.C
g++ TestDList.C -o TestDList
TestList : TestList.C
g++ TestList.C -o TestList
TestStack : TestStack.C
g++ TestStack.C -o TestStack
TestQueue : TestQueue.C
g++ TestQueue.C -o TestQueue
TestHeap : TestHeap.C
g++ TestHeap.C -o TestHeap
TestBinNode : TestBinNode.C
g++ TestBinNode.C -o TestBinNode
TestBSTree : TestBSTree.C
g++ TestBSTree.C -o TestBSTree
TestTableHash : TestTableHash.C
g++ TestTableHash.C -o TestTableHash
TestAVLTree : TestAVLTree.C
g++ TestAVLTree.C -o TestAVLTree
TestBinHeap: TestBinHeap.C
g++ TestBinHeap.C -o TestBinHeap
all :
g++ TestVector.C -o TestVector
g++ TestOrderedVector.C -o TestOrderedVector
g++ TestSNode.C -o TestSNode
g++ TestSList.C -o TestSList
g++ TestDNode.C -o TestDNode
g++ TestDList.C -o TestDList
g++ TestList.C -o TestList
g++ TestStack.C -o TestStack
g++ TestQueue.C -o TestQueue
g++ TestHeap.C -o TestHeap
g++ TestBinNode.C -o TestBinNode
g++ TestBSTree.C -o TestBSTree
g++ TestTableHash.C -o TestTableHash
g++ TestAVLTree.C -o TestAVLTree
g++ TestBinHeap.C -o TestBinHeap
clean :
rm TestVector TestOrderedVector TestSNode TestSList TestDNode TestDList TestStack TestQueue TestHeap
rm TestList TestBinNode TestBSTree TestTableHash TestAVLTree TestBinHeap