Advertisement
Guest User

Untitled

a guest
Nov 5th, 2011
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 KB | None | 0 0
  1. g++ -o compileDir/assembler.o -c -Wall src/assembler.cpp
  2. g++ -o compileDir/string.o -c -Wall src/string.cpp
  3. g++ -c -Wall -o compileDir/test_assignment.o testSrc/test_assignment.cpp
  4. g++ -o testDir/test_assignment compileDir/test_assignment.o compileDir/string.o compileDir/assembler.o
  5. testDir/test_assignment
  6.  
  7. g++ -c -Wall -o compileDir/test_bracket.o testSrc/test_bracket.cpp
  8. g++ -o testDir/test_bracket compileDir/test_bracket.o compileDir/string.o compil eDir/assembler.o
  9. testDir/test_bracket
  10.  
  11. g++ -c -Wall -o compileDir/test_comparison.o testSrc/test_comparison.cpp
  12. g++ -o testDir/test_comparison compileDir/test_comparison.o compileDir/string.o compileDir/assembler.o
  13. testDir/test_comparison
  14.  
  15. g++ -c -Wall -o compileDir/test_concatenation.o testSrc/test_concatenation.cpp
  16. g++ -o testDir/test_concatenation compileDir/test_concatenation.o compileDir/str ing.o compileDir/assembler.o
  17. testDir/test_concatenation
  18.  
  19. g++ -c -Wall -o compileDir/test_constructors.o testSrc/test_constructors.cpp
  20. g++ -o testDir/test_constructors compileDir/test_constructors.o compileDir/strin g.o compileDir/assembler.o
  21. testDir/test_constructors
  22.  
  23. g++ -c -Wall -o compileDir/test_findchar.o testSrc/test_findchar.cpp
  24. g++ -o testDir/test_findchar compileDir/test_findchar.o compileDir/string.o comp ileDir/assembler.o
  25. testDir/test_findchar
  26.  
  27. g++ -c -Wall -o compileDir/test_findstr.o testSrc/test_findstr.cpp
  28. g++ -o testDir/test_findstr compileDir/test_findstr.o compileDir/string.o compil eDir/assembler.o
  29. testDir/test_findstr
  30.  
  31. g++ -c -Wall -o compileDir/test_justify.o testSrc/test_justify.cpp
  32. g++ -o testDir/test_justify compileDir/test_justify.o compileDir/string.o compil eDir/assembler.o
  33. testDir/test_justify
  34.  
  35. g++ -c -Wall -o compileDir/test_reallocate.o testSrc/test_reallocate.cpp
  36. g++ -o testDir/test_reallocate compileDir/test_reallocate.o compileDir/string.o compileDir/assembler.o
  37. testDir/test_reallocate
  38.  
  39. g++ -c -Wall -o compileDir/test_stack.o testSrc/test_stack.cpp
  40. g++ -o testDir/test_stack compileDir/test_stack.o compileDir/string.o compileDir /assembler.o
  41. testDir/test_stack
  42.  
  43. g++ -c -Wall -o compileDir/test_substr.o testSrc/test_substr.cpp
  44. g++ -o testDir/test_substr compileDir/test_substr.o compileDir/string.o compileD ir/assembler.o
  45. testDir/test_substr
  46.  
  47. g++ -c -Wall -o compileDir/test_swap.o testSrc/test_swap.cpp
  48. g++ -o testDir/test_swap compileDir/test_swap.o compileDir/string.o compileDir/a ssembler.o
  49. testDir/test_swap
  50.  
  51. g++ -c -Wall -o compileDir/test_whitespace.o testSrc/test_whitespace.cpp
  52. g++ -o testDir/test_whitespace compileDir/test_whitespace.o compileDir/string.o compileDir/assembler.o
  53. testDir/test_whitespace
  54.  
  55. --- Testing complete ---
  56. rm compileDir/test_stack.o compileDir/test_justify.o compileDir/test_assignment. o compileDir/test_bracket.o compileDir/test_findchar.o compileDir/test_substr.o compileDir/test_whitespace.o compileDir/test_concatenation.o compileDir/test_fin dstr.o compileDir/test_constructors.o compileDir/test_comparison.o compileDir/te st_reallocate.o compileDir/test_swap.o
  57. -bash-4.1$ ^C
  58. -bash-4.1$
  59.  
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement