patch-spim_Makefile 882 B

123456789101112131415161718192021222324252627282930
  1. $OpenBSD: patch-spim_Makefile,v 1.3 2012/08/20 15:08:45 ajacoutot Exp $
  2. --- spim/Makefile.orig Sat Jan 9 06:22:57 2010
  3. +++ spim/Makefile Mon Aug 20 16:55:19 2012
  4. @@ -66,13 +66,13 @@ DOC_DIR = ../Documentation
  5. # Full path for the directory that will hold the executable files:
  6. -BIN_DIR = /usr/local/bin
  7. +BIN_DIR = ${PREFIX}/bin
  8. # Full path for the directory that will hold the exception handler:
  9. -EXCEPTION_DIR = /usr/local/lib/spim
  10. +EXCEPTION_DIR = ${PREFIX}/share/spim
  11. # Full path for the directory that will hold the man files:
  12. -MAN_DIR = /usr/local/man/en
  13. +MAN_DIR = ${PREFIX}/man/man1
  14. # If you have flex, use it instead of lex. If you use flex, define this
  15. @@ -109,7 +109,7 @@ CFLAGS = -I. -I$(CPU_DIR) $(DEFINES) -g -Wall
  16. YFLAGS = -d --file-prefix=y
  17. YCFLAGS =
  18. LDFLAGS = -lm
  19. -CSH = bash
  20. +CSH = sh
  21. # lex.yy.c is usually compiled with -O to speed it up.