1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/japanese/ebw3/files/patch-aa
Steve Price 478a2fe3b7 Access to Japanese EPWING or Electric-Book based CD-ROM via HTTP.
PR:           4025
Submitted by: Hironori Ikura <kikura@kaisei.org>
1998-02-23 20:06:31 +00:00

49 lines
1.3 KiB
Plaintext

*** Makefile.orig Sat May 24 01:09:16 1997
--- Makefile Mon Jun 23 16:54:38 1997
***************
*** 1,13 ****
#
# $Id: Makefile,v 1.4 1996/04/22 01:19:40 root Exp $
#
! DESTDIR = /usr/local/etc
PROGS = ebw3 ebw3d ebdp
SRCS = main.c init.c func.c search.c html1.c html2.c image.c gif.c gif2.c\
kanji.c romatbl.c util.c
OBJS = main.o init.o func.o search.o html1.o html2.o image.o gif.o gif2.o\
kanji.o romatbl.o util.o
! CFLAGS = -g -O # -DDEBUG
CC = gcc
all : $(PROGS)
--- 1,13 ----
#
# $Id: Makefile,v 1.4 1996/04/22 01:19:40 root Exp $
#
! DESTDIR = ${PREFIX}/libexec
PROGS = ebw3 ebw3d ebdp
SRCS = main.c init.c func.c search.c html1.c html2.c image.c gif.c gif2.c\
kanji.c romatbl.c util.c
OBJS = main.o init.o func.o search.o html1.o html2.o image.o gif.o gif2.o\
kanji.o romatbl.o util.o
! CFLAGS = -g -O -DCONFIG_FILE=\"${PREFIX}/etc/ebw3d.conf\"
CC = gcc
all : $(PROGS)
***************
*** 22,28 ****
$(CC) $(CFLAGS) -o $@ ebdp.o
install :
! install -c -s $(PROGS) $(DESTDIR)
clean :
-rm -f $(OBJS) $(PROGS) *.core core ebw3.o ebdp.o version.o
--- 22,28 ----
$(CC) $(CFLAGS) -o $@ ebdp.o
install :
! install -c -s -o bin -g bin -m 555 $(PROGS) $(DESTDIR)
clean :
-rm -f $(OBJS) $(PROGS) *.core core ebw3.o ebdp.o version.o