diff options
-rw-r--r-- | mana.files | 26 | ||||
-rwxr-xr-x | update-creator.sh | 13 |
2 files changed, 19 insertions, 20 deletions
@@ -1,44 +1,43 @@ ./CMakeLists.txt -./config.h ./data/CMakeLists.txt ./data/fonts/CMakeLists.txt -./data/fonts/Makefile.am ./data/graphics/CMakeLists.txt ./data/graphics/gui/CMakeLists.txt ./data/graphics/gui/colors.xml -./data/graphics/gui/Makefile.am ./data/graphics/gui/speechbubble.xml ./data/graphics/gui/window.xml ./data/graphics/images/CMakeLists.txt -./data/graphics/images/Makefile.am -./data/graphics/Makefile.am ./data/graphics/sprites/CMakeLists.txt ./data/graphics/sprites/error.xml -./data/graphics/sprites/Makefile.am ./data/help/about.txt ./data/help/changes.txt ./data/help/CMakeLists.txt ./data/help/commands.txt ./data/help/header.txt ./data/help/index.txt -./data/help/Makefile.am -./data/help/skills.txt ./data/help/support.txt -./data/help/team.txt ./data/help/windows.txt ./data/icons/CMakeLists.txt -./data/icons/Makefile.am -./data/Makefile.am ./docs/clientupdates.txt ./docs/example.mana ./docs/FAQ.txt ./docs/HACKING.txt ./docs/items.txt -./docs/Makefile.am ./docs/packages.txt ./docs/progression.txt ./docs/sounddev.txt -./Makefile.am +./libs/enet/CMakeLists.txt +./libs/enet/design.txt +./libs/enet/include/enet/callbacks.h +./libs/enet/include/enet/enet.h +./libs/enet/include/enet/list.h +./libs/enet/include/enet/protocol.h +./libs/enet/include/enet/time.h +./libs/enet/include/enet/types.h +./libs/enet/include/enet/unix.h +./libs/enet/include/enet/utility.h +./libs/enet/include/enet/win32.h +./packaging/windows/portable.xml ./packaging/windows/readme.txt ./po/CMakeLists.txt ./src/animatedsprite.cpp @@ -302,7 +301,6 @@ ./src/log.h ./src/main.cpp ./src/main.h -./src/Makefile.am ./src/map.cpp ./src/map.h ./src/monster.cpp diff --git a/update-creator.sh b/update-creator.sh index edda5613..6acb8522 100755 --- a/update-creator.sh +++ b/update-creator.sh @@ -1,8 +1,9 @@ #!/bin/sh -find -name \*.cpp \ - -o -name \*.h \ - -o -name \*.am \ - -o -name \*.txt \ - -o -name \*.xml \ - -o -name \*.mana \ +find \( -name \*.cpp \ + -o -name \*.h \ + -o -name \*.txt \ + -o -name \*.xml \ + -o -name \*.mana \ + \) ! -wholename \*/CMakeFiles/\* \ + ! -name CMakeCache.txt \ | sort > mana.files |