Mercurial > hg
view contrib/hgsh/Makefile @ 47005:27602e030a1f stable
incoming: use bytes for an error message
Caught by pytype.
Differential Revision: https://phab.mercurial-scm.org/D10461
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sun, 18 Apr 2021 00:56:09 -0400 |
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