openbsd-ports/devel/mk/patches/patch-Makefile
pvalchev 168a3b02ef - Use common Makefile for all architectures, thus allowing this to build
on non-i386 platforms - there is no need to be MD
- Don't patch files into existence, use files/ for that
- Change wrong LIB_DEPENDS to BUILD_DEPENDS because these libraries
are all static.
- Add appropriate regress targets with REGRESS_DEPENDS or set
NO_REGRESS where such tests are not available.
- Do not link with -g
2003-03-03 00:51:37 +00:00

26 lines
804 B
Plaintext

--- Makefile.orig Thu Feb 13 08:05:44 2003
+++ Makefile Sun Mar 2 17:05:52 2003
@@ -10,7 +10,7 @@ OBJTYPE!=uname -m | sed 's;i.86;386;; s;
# the gnu rules will mess up bsd but not vice versa,
# hence the gnu rules come first.
-include Make.$(SYSNAME)-$(OBJTYPE)
+include Make.$(SYSNAME)
PREFIX=/usr/local
@@ -57,11 +57,11 @@ TGZFILES+=mk.pdf
install: $(LIB)
test -d $(PREFIX)/man/man1 || mkdir $(PREFIX)/man/man1
- test -d $(PREFIX)/doc || mkdir $(PREFIX)/doc
+ test -d $(PREFIX)/share/doc/mk || mkdir -p $(PREFIX)/share/doc/mk
install -m 0755 mk $(PREFIX)/bin/mk
cat mk.1 | sed 's;DOCPREFIX;$(PREFIX);g' >mk.1a
install -m 0644 mk.1a $(PREFIX)/man/man1/mk.1
- install -m 0644 mk.pdf $(PREFIX)/doc/mk.pdf
+ install -m 0644 mk.pdf $(PREFIX)/share/doc/mk/mk.pdf
$(TARG): $(OFILES)