##// END OF EJS Templates
packaging: introduce generic local rpm build target using python3...
packaging: introduce generic local rpm build target using python3 It is unnecessary extra work to explicitly add Makefile targets for a random selection of Fedora versions. Generally, it just works. If not, the root cause should be fixed.

File last commit:

r2341:dbbe7f72 default
r43651:69f5571d stable
Show More
Makefile
13 lines | 160 B | text/x-makefile | MakefileLexer
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