Commit f107c09e862faad5e10c90b1e23cc6695b5a137b

Authored by Grzegorz Jabłoński
1 parent 702f90c7

Typo fix in makefile

examples09/06-unordered_set/makefile
... ... @@ -3,13 +3,13 @@ all: unordered_set unordered_set2
3 3 unordered_set: unordered_set.o
4 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 7 g++ -g -c -Wall -pedantic $< -o $@
8 8  
9 9 unordered_set2: unordered_set2.o
10 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 13 g++ -g -c -Wall -pedantic $< -o $@
14 14  
15 15  
... ...