Mercurial
view Makefile @ 4:4016ab04414d main tip
Implemented simple titlebar with repo and branch name
| author | luxanna <l.lux@magenta.de> |
|---|---|
| date | Mon, 18 May 2026 23:45:48 +0200 |
| parents | b85c72168719 |
| children |
line wrap: on
line source
.POSIX: .SUFFIXES: HARE=hare HAREFLAGS= TARGET=hg-wolp LIBS=termbox PREFIX=/usr/local DESTDIR=$(PREFIX)/bin LIBRARY_PATH=$(PREFIX)/lib build: mkdir -p bin ${HARE} build ${HAREFLAGS} -o bin/${TARGET} -L${LIBRARY_PATH} -l${LIBS} cmd/"${TARGET}.ha" clean: rm -rf bin install: build install -m655 bin/${TARGET} ${DESTDIR} uninstall: rm "$(DESTDIR)/$(TARGET)" .PHONY: build clean install uninstall