about summary refs log tree commit diff stats
path: root/027call_ingredient.cc
Commit message (Expand)AuthorAgeFilesLines
* 5001 - drop the :(scenario) DSLKartik Agaram2019-03-121-50/+77
* 4266 - space for alloc-id in heap allocationsKartik Agaram2018-06-241-0/+2
* 4264Kartik Agaram2018-06-171-0/+191
* 4259Kartik Agaram2018-06-161-191/+0
* 4258 - undo 4257Kartik Agaram2018-06-151-17/+0
* 4257 - abortive attempt at safe fat pointersKartik Agaram2018-06-151-0/+17
* 4243Kartik Agaram2018-05-121-3/+3
* 4226 - example program: exceptionsKartik K. Agaram2018-03-151-1/+1
* 4134 - 'input' = 'ingredient'Kartik K. Agaram2017-12-031-0/+3
* 3877Kartik K. Agaram2017-05-261-2/+2
* 3663 - fix a refcounting bug: '(type)' != 'type'Kartik K. Agaram2016-11-101-2/+3
* 3541Kartik K. Agaram2016-10-211-3/+1
* 3522Kartik K. Agaram2016-10-191-2/+2
* 3381Kartik K. Agaram2016-09-171-3/+3
* 3380Kartik K. Agaram2016-09-171-9/+9
* 3374Kartik K. Agaram2016-09-161-4/+4
* 3309Kartik K. Agaram2016-09-091-6/+10
* 3202 - bugfix: 'start-running' and refcountsKartik K. Agaram2016-08-161-0/+1
* 3120Kartik K. Agaram2016-07-211-2/+2
* 3079Kartik K. Agaram2016-06-291-1/+1
* 3074Kartik K. Agaram2016-06-291-1/+2
* 2990Kartik K. Agaram2016-05-201-5/+5
* 2931 - be explicit about making copiesKartik K. Agaram2016-05-061-2/+2
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-241-5/+3
* 2862Kartik K. Agaram2016-04-241-0/+185
ht .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
aerc:
	go build -o aerc

%.1: doc/%.1.scd
	scdoc < $< > $@

%.5: doc/%.5.scd
	scdoc < $< > $@

DOCS := \
	aerc.1 \
	aerc-config.5 \
	aerc-imap.5 \
	aerc-smtp.5

all: aerc $(DOCS)

clean:
	rm -f *.1 *.5 aerc

PREFIX?=/usr/local
_INSTDIR=$(DESTDIR)$(PREFIX)
BINDIR?=$(_INSTDIR)/bin
SHAREDIR?=$(_INSTDIR)/share/aerc
MANDIR?=$(_INSTDIR)/share/man

install: all
	mkdir -p $(BINDIR) $(MANDIR)/man1 $(MANDIR)/man5 \
		$(SHAREDIR) $(SHAREDIR)/filters
	install -m755 aerc $(BINDIR)/aerc
	install -m644 aerc.1 $(MANDIR)/man1/aerc.1
	install -m644 aerc-config.5 $(MANDIR)/man5/aerc-config.5
	install -m644 aerc-imap.5 $(MANDIR)/man5/aerc-imap.5
	install -m644 aerc-smtp.5 $(MANDIR)/man5/aerc-smtp.5
	install -m644 config/accounts.conf $(SHAREDIR)/accounts.conf
	install -m644 config/aerc.conf $(SHAREDIR)/aerc.conf
	install -m644 config/binds.conf $(SHAREDIR)/binds.conf
	install -m755 contrib/hldiff.py $(SHAREDIR)/filters/hldiff.py
	install -m755 contrib/html $(SHAREDIR)/filters/html
	install -m755 contrib/plaintext.py $(SHAREDIR)/filters/plaintext.py

.DEFAULT_GOAL := all

.PHONY: aerc clean install