-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (17 loc) · 780 Bytes
/
Makefile
File metadata and controls
22 lines (17 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Sample Makefile for Project 0
#
# You will need to rename this file to “Makefile” (note the capital M)
# and test it in the ECE servers, with the command “make”
#
# Ensure that after the “make” command an executable with the expected name is
# created. For this example the expected name for the excecutatable is playlistdriver
#
# List all the drivers
all: mstprimdriver
# list the test program all classes (cpp files)
# cpp files must use #include , to include *.h or *.hpp files
mstprimdriver: mstprimtest.cpp Graph.cpp Vertex.cpp Edge.cpp MinHeap.cpp illegal_exception.cpp
g++ -std=c++11 -o mstprimdriver mstprimtest.cpp Graph.cpp Vertex.cpp Edge.cpp MinHeap.cpp illegal_exception.cpp
# List all the executables under 'all:'
clean:
rm mstprimdriver