-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (24 loc) · 1.02 KB
/
Makefile
File metadata and controls
36 lines (24 loc) · 1.02 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
problem2a: problem2a.o problem.o map.o stack.o pq.o
gcc -Wall -o problem2a problem2a.o problem.o map.o stack.o pq.o -g
problem2b: problem2b.o problem.o map.o stack.o pq.o
gcc -Wall -o problem2b problem2b.o problem.o map.o stack.o pq.o -g
problem2d: problem2d.o problem.o map.o stack.o pq.o
gcc -Wall -o problem2d problem2d.o problem.o map.o stack.o pq.o -g
problem2e: problem2e.o problem.o map.o stack.o pq.o
gcc -Wall -o problem2e problem2e.o problem.o map.o stack.o pq.o -g
problem2a.o: problem2a.c problem.h map.h stack.h pq.h
gcc -c problem2a.c -Wall -g
problem2b.o: problem2b.c problem.h map.h stack.h pq.h
gcc -c problem2b.c -Wall -g
problem2d.o: problem2d.c problem.h map.h stack.h pq.h
gcc -c problem2d.c -Wall -g
problem2e.o: problem2e.c problem.h map.h stack.h pq.h
gcc -c problem2e.c -Wall -g
problem.o: problem.c problem.h map.h stack.h pq.h
gcc -c problem.c -Wall -g
map.o: map.c map.h stack.h pq.h
gcc -c map.c -Wall -g
stack.o: stack.c stack.h
gcc -c stack.c -Wall -g
pq.o: pq.c pq.h
gcc -c pq.c -Wall -g