Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile.am 607 B

123456789101112131415161718192021
  1. SUBDIRS = src test deushax monsterz tools gfx
  2. DIST_SUBDIRS = $(SUBDIRS)
  3. EXTRA_DIST = bootstrap build-linux build-mingw build-mingw64 build-ps3 build/lol-build
  4. AUTOMAKE_OPTIONS = dist-bzip2
  5. bench:
  6. cd test && $(MAKE) $(AM_MAKEFLAGS) $@
  7. .PHONY: bench
  8. dist: lolunit-$(LOLUNIT_VERSION).tar.gz
  9. lolunit-$(LOLUNIT_VERSION).tar.gz:
  10. rm -rf lolunit-$(LOLUNIT_VERSION)
  11. mkdir lolunit-$(LOLUNIT_VERSION)
  12. mkdir lolunit-$(LOLUNIT_VERSION)/lol
  13. cp $(top_srcdir)/src/lol/unit.h lolunit-$(LOLUNIT_VERSION)/lol
  14. tar cvzf lolunit-$(LOLUNIT_VERSION).tar.gz lolunit-$(LOLUNIT_VERSION)
  15. rm -rf lolunit-$(LOLUNIT_VERSION)