Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
517B

  1. #!/bin/bash
  2. DIR=$(cd "$(dirname "$0")" ; pwd -P)
  3. TMP=/tmp/cxx-headers.tmp
  4. grep '^memory_Context ' memory.cpp > $TMP
  5. grep '^std::string ' memory_test.cpp >> $TMP
  6. grep '^memory_Context ' cli.cpp >> $TMP
  7. grep '^std::string ' cli_test.cpp >> $TMP
  8. grep '^std::string ' ctx_test.cpp >> $TMP
  9. grep '^std::string ' llm_test.cpp >> $TMP
  10. IN=$TMP
  11. OUT=$DIR/main.h
  12. echo '
  13. #include "memory_Context.h"
  14. #ifndef main_HEADER
  15. #define main_HEADER
  16. ' > $OUT
  17. sed -Ef cxx-headers.sed <$IN >>$OUT
  18. echo '
  19. #endif // main_HEADER
  20. ' >> $OUT