Install README into doc folder

This commit is contained in:
Alexander Kobjolke 2022-03-04 21:24:17 +01:00
parent 2b05114db5
commit da7143c61e
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
build/ build/
dist/

View file

@ -8,6 +8,7 @@ build: builddir build/bin/annotator
GHCFLAGS = -iapp -isrc -Wall -O2 -outputdir build/.obj GHCFLAGS = -iapp -isrc -Wall -O2 -outputdir build/.obj
DESTDIR = ~/.local DESTDIR = ~/.local
BINDIR = ${DESTDIR}/bin BINDIR = ${DESTDIR}/bin
DOCDIR = ${DESTDIR}/share/doc/annotator
builddir: builddir:
mkdir -p build/bin build/.obj mkdir -p build/bin build/.obj
@ -28,6 +29,7 @@ distclean: clean
install: build/bin/annotator install: build/bin/annotator
@install -D -t ${BINDIR} $< @install -D -t ${BINDIR} $<
@install -D -t ${DOCDIR} README.md
release: script/make-release release: script/make-release
@$< @$<