Commit f107c09e862faad5e10c90b1e23cc6695b5a137b
1 parent
702f90c7
Typo fix in makefile
Showing
1 changed file
with
2 additions
and
2 deletions
examples09/06-unordered_set/makefile
@@ -3,13 +3,13 @@ all: unordered_set unordered_set2 | @@ -3,13 +3,13 @@ all: unordered_set unordered_set2 | ||
3 | unordered_set: unordered_set.o | 3 | unordered_set: unordered_set.o |
4 | g++ -g -Wall -pedantic $^ -o $@ | 4 | g++ -g -Wall -pedantic $^ -o $@ |
5 | 5 | ||
6 | -unoredered_set.o: unordered_set.cpp employee.h | 6 | +unordered_set.o: unordered_set.cpp employee.h |
7 | g++ -g -c -Wall -pedantic $< -o $@ | 7 | g++ -g -c -Wall -pedantic $< -o $@ |
8 | 8 | ||
9 | unordered_set2: unordered_set2.o | 9 | unordered_set2: unordered_set2.o |
10 | g++ -g -Wall -pedantic $^ -o $@ | 10 | g++ -g -Wall -pedantic $^ -o $@ |
11 | 11 | ||
12 | -unoredered_set2.o: unordered_set2.cpp employee.h | 12 | +unordered_set2.o: unordered_set2.cpp employee.h |
13 | g++ -g -c -Wall -pedantic $< -o $@ | 13 | g++ -g -c -Wall -pedantic $< -o $@ |
14 | 14 | ||
15 | 15 |