Sha256: 9a4981aba9c04ea2df9b360d0dcc948b2f80754d6c691a2594a1668942cb2c3d
Contents?: true
Size: 463 Bytes
Versions: 7
Compression:
Stored size: 463 Bytes
Contents
# # Makefile for ./man path, used by configure # PROGRAM = gocr mandir = @mandir@ INSTALL=@INSTALL@ DESTDIR=@prefix@ 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