Mercurial > hg
view contrib/hgsh/Makefile @ 30405:e77e8876886f
perf: omit copying ui and redirect to ferr if buffer API is in use
This allow to get the output of contrib/perf.py commands using the
ui.pushbuffer() API.
author | Philippe Pepiot <philippe.pepiot@logilab.fr> |
---|---|
date | Tue, 15 Nov 2016 16:10:57 +0100 |
parents | dbbe7f72d15a |
children |
line wrap: on
line source
CC := gcc CFLAGS := -g -O2 -Wall -Werror prefix ?= /usr/bin hgsh: hgsh.o $(CC) -o $@ $< install: hgsh install -m755 hgsh $(prefix) clean: rm -f *.o hgsh