76bb09a31f
Heme is a fast and portable console hex editor for unix systems. It has undo support (number of undo operations is only limited by available memory), ability to fill a range of addresses with the specified byte, ability to search for a single byte or character string. Offsets can be given in hexadecimal, octal or decimal. There are two editing modes: hex and ascii. In hex mode you type hexadecimal digits and in ascii mode you type characters. In the ascii mode cursor is automatically moved to the next byte after typing a character (this behaviour is configurable for hex mode).
13 lines
433 B
Text
13 lines
433 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2005/10/01 05:57:30 minskim Exp $
|
|
|
|
--- Makefile.orig 2005-03-06 10:52:31.000000000 -0800
|
|
+++ Makefile
|
|
@@ -1,6 +1,6 @@
|
|
INSTALL_PREFIX = /usr/local
|
|
-CFLAGS = -Wall -DHAVE_MMAP # remove -DHAVE_MMAP if you don't have mmap
|
|
-LDFLAGS = -lcurses
|
|
+CFLAGS+= -Wall -DHAVE_MMAP # remove -DHAVE_MMAP if you don't have mmap
|
|
+LDFLAGS+= -lncurses
|
|
OBJECTS = heme.o xmalloc.o error.o pconfig.o pgetopt.o
|
|
TARGET = heme
|
|
|