neofeels/Makefile

24 lines
370 B
Makefile
Raw Permalink Normal View History

2025-01-05 16:54:08 +00:00
GO ?= go
RM ?= rm
SCDOC ?= scdoc
all: neofeels doc
neofeels:
$(GO) build $(GOFLAGS) .
2025-01-05 19:07:39 +00:00
ifeq (, $(shell which $(SCDOC) 2>/dev/null))
$(warning "$(SCDOC) not found, skipping building documentation")
2025-01-05 16:54:08 +00:00
doc:
2025-01-05 19:07:39 +00:00
else
doc: doc/neofeels.1
doc/neofeels.1:
$(SCDOC) < doc/neofeels.1.scd > doc/neofeels.1
endif
2025-01-05 16:54:08 +00:00
clean:
rm neofeels doc/neofeels.1
.PHONY: all neofeels doc clean