Skip to content
Snippets Groups Projects
Commit d9ba0bbb authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Added makefile

parent e9fee40f
No related branches found
No related tags found
No related merge requests found
build
Makefile 0 → 100644
prefix ?= /usr/local
build/efa.1: bin/efa
mkdir -p build
pod2man $< > $@
install: build/efa.1
install -m 755 -D bin/efa $(prefix)/bin/efa
install -m 644 -D build/efa.1 $(prefix)/share/man/man1/efa.1
uninstall:
$(RM) $(prefix)/bin/efa
$(RM) $(prefix)/share/man/man1/efa.1
clean:
$(RM) -r build
.PHONY: install uninstall clean
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment