diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-08-29 11:12:02 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-08-29 11:12:02 +0000 |
commit | 82f34cee44e22e59bc8227d7196564ab16066b8c (patch) | |
tree | 23389ceacedc095919bfa57c4901e7e32638f184 /archivers/lbrate/files/patch-Makefile | |
parent | Updated to 1.4. Using version 1.40 in port to avoid PORTEPOCH. (diff) |
add lbrate
Extract/decompress CP/M LBR archives
PR: 30087
Submitted by: Gea-Suan Lin <gslin@infomath.math.nctu.edu.tw>
Notes
Notes:
svn path=/head/; revision=47078
Diffstat (limited to 'archivers/lbrate/files/patch-Makefile')
-rw-r--r-- | archivers/lbrate/files/patch-Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/archivers/lbrate/files/patch-Makefile b/archivers/lbrate/files/patch-Makefile new file mode 100644 index 000000000000..8ed29bafdf4c --- /dev/null +++ b/archivers/lbrate/files/patch-Makefile @@ -0,0 +1,20 @@ +--- Makefile.orig Wed Aug 29 19:07:24 2001 ++++ Makefile Wed Aug 29 19:08:13 2001 +@@ -1,7 +1,7 @@ + # Makefile - makefile for lbrate + + CC=gcc +-CFLAGS=-O2 -Wall ++CFLAGS+=-I%%LOCALBASE%%/include + + # Set BINDIR to directory for binary, + # MANDIR to directory for man page. +@@ -19,7 +19,7 @@ + all: lbrate + + lbrate: $(OBJ) +- $(CC) $(CFLAGS) -o lbrate $(OBJ) ++ $(CC) $(CFLAGS) -o lbrate $(OBJ) -L%%LOCALBASE%%/lib -lgnugetopt + + installdirs: + /bin/sh ./mkinstalldirs $(BINDIR) $(MANDIR) |