Sha256: 08733a64d1123ff00eaf631327ca349cf283acb28ea4794867022f015dd5bfca
Contents?: true
Size: 480 Bytes
Versions: 7
Compression:
Stored size: 480 Bytes
Contents
# # Makefile for ./man path, used by configure # PROGRAM = gocr mandir = ${prefix}/man INSTALL=/usr/bin/install -c DESTDIR=/usr/local default: all all: # PHONY = don't look at file clean, -rm = start rm and ignore errors .PHONY : clean proper install uninstall install: all $(INSTALL) -d $(DESTDIR)$(mandir)/man1 $(INSTALL) ../man/man1/$(PROGRAM).1 $(DESTDIR)$(mandir)/man1 uninstall: -rm -f $(DESTDIR)$(mandir)/man1/$(PROGRAM).1 clean: -rm -f *.o *~ proper: clean
Version data entries
7 entries across 7 versions & 2 rubygems