Provides automatic installation scripts for OpenRA with Tiberian Sun & Red Alert 2 + Dune 2 (Windows, Linux)
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.

59 lines
2.1 KiB

  1. --- a/Makefile
  2. +++ b/Makefile
  3. @@ -187,6 +187,15 @@
  4. PROGRAMS += mod_ts
  5. mod_ts: $(mod_ts_TARGET)
  6. +# Red Alert 2
  7. +mod_ra2_SRCS := $(shell find OpenRA.Mods.RA2/ -iname '*.cs')
  8. +mod_ra2_TARGET = mods/ra2/OpenRA.Mods.RA2.dll
  9. +mod_ra2_KIND = library
  10. +mod_ra2_DEPS = $(STD_MOD_DEPS) $(mod_common_TARGET)
  11. +mod_ra2_LIBS = $(COMMON_LIBS) $(STD_MOD_LIBS) $(mod_common_TARGET)
  12. +PROGRAMS += mod_ra2
  13. +mod_ra2: $(mod_ra2_TARGET)
  14. +
  15. check-scripts:
  16. @echo
  17. @echo "Checking for Lua syntax errors..."
  18. @@ -222,6 +231,9 @@
  19. @echo "Checking for code style violations in OpenRA.Mods.TS..."
  20. @mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Mods.TS
  21. @echo
  22. + @echo "Checking for code style violations in OpenRA.Mods.RA2..."
  23. + @mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Mods.RA2
  24. + @echo
  25. @echo "Checking for code style violations in OpenRA.Utility..."
  26. @mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Utility
  27. @echo
  28. @@ -256,6 +268,9 @@
  29. @mono --debug OpenRA.Utility.exe ts --check-yaml
  30. @mono --debug OpenRA.Utility.exe ts --check-sequence-sprites
  31. @echo
  32. + @echo "Testing Red Alert 2 mod MiniYAML..."
  33. + @mono --debug OpenRA.Utility.exe ra2 --check-yaml
  34. + @echo
  35. @echo "Testing Dune 2000 mod MiniYAML..."
  36. @mono --debug OpenRA.Utility.exe d2k --check-yaml
  37. @mono --debug OpenRA.Utility.exe d2k --check-sequence-sprites
  38. @@ -324,7 +339,7 @@
  39. package: all-dependencies core tools docs version
  40. -mods: mod_common mod_ra mod_cnc mod_d2k mod_ts
  41. +mods: mod_common mod_ra mod_cnc mod_d2k mod_ts mod_ra2
  42. all: dependencies core tools
  43. @@ -393,6 +408,10 @@
  44. @$(CP_R) mods/d2k "$(DATA_INSTALL_DIR)/mods/"
  45. @$(INSTALL_PROGRAM) $(mod_d2k_TARGET) "$(DATA_INSTALL_DIR)/mods/d2k"
  46. @$(CP_R) mods/modchooser "$(DATA_INSTALL_DIR)/mods/"
  47. + @$(CP_R) mods/ts "$(DATA_INSTALL_DIR)/mods/"
  48. + @$(INSTALL_PROGRAM) $(mod_ts_TARGET) "$(DATA_INSTALL_DIR)/mods/ts"
  49. + @$(CP_R) mods/ra2 "$(DATA_INSTALL_DIR)/mods/"
  50. + @$(INSTALL_PROGRAM) $(mod_ra2_TARGET) "$(DATA_INSTALL_DIR)/mods/ra2"
  51. @$(INSTALL_DATA) "global mix database.dat" "$(DATA_INSTALL_DIR)/global mix database.dat"
  52. @$(INSTALL_DATA) "GeoLite2-Country.mmdb.gz" "$(DATA_INSTALL_DIR)/GeoLite2-Country.mmdb.gz"