Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

72 Zeilen
1.9 KiB

  1. EXTRA_DIST = rules.make configure Makefile.include
  2. all: all-recursive
  3. top_srcdir=.
  4. include $(top_srcdir)/config.make
  5. include $(top_srcdir)/rules.make
  6. #include $(top_srcdir)/custom-hooks.make
  7. #Warning: This is an automatically generated file, do not edit!
  8. ifeq ($(CONFIG),DEBUG)
  9. SUBDIRS = Pipi Pimp
  10. endif
  11. ifeq ($(CONFIG),RELEASE)
  12. SUBDIRS = Pipi Pimp
  13. endif
  14. CONFIG_MAKE=$(top_srcdir)/config.make
  15. %-recursive: $(CONFIG_MAKE)
  16. @set . $$MAKEFLAGS; final_exit=:; \
  17. case $$2 in --unix) shift ;; esac; \
  18. case $$2 in *=*) dk="exit 1" ;; *k*) dk=: ;; *) dk="exit 1" ;; esac; \
  19. make pre-$*-hook prefix=$(prefix) ; \
  20. for dir in $(SUBDIRS); do \
  21. case $$dir in \
  22. .) make $*-local || { final_exit="exit 1"; $$dk; };;\
  23. *) (cd $$dir && make $*) || { final_exit="exit 1"; $$dk; };;\
  24. esac \
  25. done; \
  26. make post-$*-hook prefix=$(prefix) ; \
  27. $$final_exit
  28. $(CONFIG_MAKE):
  29. echo "You must run configure first"
  30. exit 1
  31. clean distclean: clean-recursive
  32. install: install-recursive
  33. uninstall: uninstall-recursive
  34. dist: $(CONFIG_MAKE)
  35. rm -rf $(PACKAGE)-$(VERSION)
  36. mkdir $(PACKAGE)-$(VERSION)
  37. make pre-dist-hook distdir=$$distdir
  38. for dir in $(SUBDIRS); do \
  39. pkgdir=`pwd`/$(PACKAGE)-$(VERSION); \
  40. mkdir $$pkgdir/$$dir || true; \
  41. case $$dir in \
  42. .) make dist-local distdir=$$pkgdir || exit 1;; \
  43. *) (cd $$dir; make dist-local distdir=$$pkgdir/$$dir) || exit 1;; \
  44. esac \
  45. done
  46. (make dist-local distdir=$(PACKAGE)-$(VERSION))
  47. make
  48. make post-dist-hook distsir=$$distdir
  49. tar czvf $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION)
  50. rm -rf $(PACKAGE)-$(VERSION)
  51. @echo "=========================================="
  52. @echo "$(PACKAGE)-$(VERSION) has been packaged > $(PACKAGE)-$(VERSION).tar.gz"
  53. @echo "=========================================="
  54. distcheck: dist
  55. (mkdir test; cd test; \
  56. tar xzvf ../$(PACKAGE)-$(VERSION).tar.gz; cd $(PACKAGE)-$(VERSION); \
  57. ./configure --prefix=$$(cd `pwd`/..; pwd); \
  58. make && make install && make dist);
  59. rm -rf test