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.

Makefile.am 1.7 KiB

vor 18 Jahren
vor 18 Jahren
vor 18 Jahren
12345678910111213141516171819202122232425262728293031323334353637383940
  1. SUBDIRS = src tools fonts doc test
  2. DIST_SUBDIRS = $(SUBDIRS)
  3. EXTRA_DIST = bootstrap
  4. AUTOMAKE_OPTIONS = dist-bzip2
  5. CACA2TLF = $(top_builddir)/tools/caca2tlf
  6. FONTDIR = $(top_builddir)/fonts
  7. fonts: tools/caca2tlf FORCE
  8. $(CACA2TLF) -u "Monospace 9" | zip > $(FONTDIR)/bigmono9.tlf
  9. $(CACA2TLF) -u "Monospace Bold 12" | zip > $(FONTDIR)/bigmono12.tlf
  10. $(CACA2TLF) -h -u "Monospace 9" | zip > $(FONTDIR)/mono9.tlf
  11. $(CACA2TLF) -h -u "Monospace Bold 12" | zip > $(FONTDIR)/mono12.tlf
  12. $(CACA2TLF) -q -u "Monospace 9" | zip > $(FONTDIR)/smmono9.tlf
  13. $(CACA2TLF) -q -u "Monospace Bold 12" | zip > $(FONTDIR)/smmono12.tlf
  14. $(CACA2TLF) -a "Monospace 9" | zip > $(FONTDIR)/bigascii9.tlf
  15. $(CACA2TLF) -a "Monospace Bold 12" | zip > $(FONTDIR)/bigascii12.tlf
  16. $(CACA2TLF) -h -a "Monospace 9" | zip > $(FONTDIR)/ascii9.tlf
  17. $(CACA2TLF) -h -a "Monospace Bold 12" | zip > $(FONTDIR)/ascii12.tlf
  18. $(CACA2TLF) -q -a "Monospace 9" | zip > $(FONTDIR)/smascii9.tlf
  19. $(CACA2TLF) -q -a "Monospace Bold 12" | zip > $(FONTDIR)/smascii12.tlf
  20. $(CACA2TLF) -s "Monospace 9" | zip > $(FONTDIR)/biggray9.tlf
  21. $(CACA2TLF) -s "Monospace Bold 12" | zip > $(FONTDIR)/biggray12.tlf
  22. webhost = poulet.zoy.org
  23. webdir = /srv/libcaca.zoy.org/var/www/
  24. upload: FORCE
  25. scp $(distdir).tar.gz $(webhost):$(webdir)/files/
  26. update-changelog: FORCE
  27. git --help >/dev/null 2>&1 \
  28. && test -d .git \
  29. && git log --stat | awk 'function flush() { if (m != "") { print "Commit: " v "\nAuthor: " a m } m=""; v="UNSUBMITTED" } { if ($$1 == "commit") flush(); else if ($$1 == "Author:") { a = $$2 } else if ($$1 == "git-svn-id:") { split($$2,tmp,"@"); v=tmp[2] } else if ($$_ != " ") { m=m "\n" $$_ } } END { flush() }' > ChangeLog
  30. echo-dirs: ; echo src tools
  31. FORCE: