2006-09-22 19:03:41 +02:00
|
|
|
|
2009-12-16 16:54:17 +01:00
|
|
|
SUBDIRS = src tools fonts doc test
|
2006-09-30 13:34:37 +02:00
|
|
|
DIST_SUBDIRS = $(SUBDIRS)
|
2006-09-22 19:03:41 +02:00
|
|
|
|
|
|
|
EXTRA_DIST = bootstrap
|
|
|
|
|
2009-12-16 01:37:44 +01:00
|
|
|
CACA2TLF = $(top_builddir)/tools/caca2tlf
|
|
|
|
FONTDIR = $(top_builddir)/fonts
|
|
|
|
|
2006-11-12 19:02:15 +01:00
|
|
|
fonts: tools/caca2tlf FORCE
|
2009-12-16 01:37:44 +01:00
|
|
|
$(CACA2TLF) -u "Monospace 9" | zip > $(FONTDIR)/bigmono9.tlf
|
|
|
|
$(CACA2TLF) -u "Monospace Bold 12" | zip > $(FONTDIR)/bigmono12.tlf
|
|
|
|
$(CACA2TLF) -h -u "Monospace 9" | zip > $(FONTDIR)/mono9.tlf
|
|
|
|
$(CACA2TLF) -h -u "Monospace Bold 12" | zip > $(FONTDIR)/mono12.tlf
|
|
|
|
$(CACA2TLF) -q -u "Monospace 9" | zip > $(FONTDIR)/smmono9.tlf
|
|
|
|
$(CACA2TLF) -q -u "Monospace Bold 12" | zip > $(FONTDIR)/smmono12.tlf
|
|
|
|
$(CACA2TLF) -a "Monospace 9" | zip > $(FONTDIR)/bigascii9.tlf
|
|
|
|
$(CACA2TLF) -a "Monospace Bold 12" | zip > $(FONTDIR)/bigascii12.tlf
|
|
|
|
$(CACA2TLF) -h -a "Monospace 9" | zip > $(FONTDIR)/ascii9.tlf
|
|
|
|
$(CACA2TLF) -h -a "Monospace Bold 12" | zip > $(FONTDIR)/ascii12.tlf
|
|
|
|
$(CACA2TLF) -q -a "Monospace 9" | zip > $(FONTDIR)/smascii9.tlf
|
|
|
|
$(CACA2TLF) -q -a "Monospace Bold 12" | zip > $(FONTDIR)/smascii12.tlf
|
2010-01-27 01:48:05 +01:00
|
|
|
$(CACA2TLF) -s "Monospace 9" | zip > $(FONTDIR)/biggray9.tlf
|
|
|
|
$(CACA2TLF) -s "Monospace Bold 12" | zip > $(FONTDIR)/biggray12.tlf
|
2006-11-12 19:02:15 +01:00
|
|
|
|
2006-11-16 01:33:32 +01:00
|
|
|
webhost = poulet.zoy.org
|
|
|
|
webdir = /srv/libcaca.zoy.org/var/www/
|
|
|
|
|
|
|
|
upload: FORCE
|
|
|
|
scp $(distdir).tar.gz $(webhost):$(webdir)/files/
|
|
|
|
|
2010-02-09 00:21:40 +01:00
|
|
|
update-changelog: FORCE
|
|
|
|
git --help >/dev/null 2>&1 \
|
|
|
|
&& test -d .git \
|
|
|
|
&& 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
|
|
|
|
|
2015-12-04 10:47:37 +01:00
|
|
|
# Travis CI uses “make test” instead of “make check”
|
|
|
|
test: check
|
|
|
|
|
2010-02-09 02:07:02 +01:00
|
|
|
echo-dirs: ; echo src tools
|
|
|
|
|
2006-11-12 19:02:15 +01:00
|
|
|
FORCE:
|