diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | INSTALL | 4 | ||||
-rw-r--r-- | Makefile | 23 |
3 files changed, 28 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..84c048a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/build/ @@ -0,0 +1,4 @@ +$ make +# make install + +Requires the Image::Imlib2 perl module. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e04745 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +prefix = /usr/local + +default: build/gen-xhtml-thumbnails.1 + +build/%.1: bin/% + mkdir -p build + pod2man $< > $@ + +install: build/gen-xhtml-thumbnails.1 + mkdir -p $(prefix)/bin $(prefix)/share/man/man1 + cp bin/gen-xhtml-thumbnails $(prefix)/bin/gen-xhtml-thumbnails + cp build/gen-xhtml-thumbnails.1 $(prefix)/share/man/man1/gen-xhtml-thumbnails.1 + chmod 755 $(prefix)/bin/gen-xhtml-thumbnails + chmod 644 $(prefix)/share/man/man1/gen-xhtml-thumbnails.1 + +uninstall: + rm -f $(prefix)/bin/gen-xhtml-thumbnails + rm -f $(prefix)/share/man/man1/gen-xhtml-thumbnails.1 + +clean: + rm -rf build + +.PHONY: install uninstall clean |