Changed all occurences of /usr/include/dore.h to relative includes in the

tree. Change the -ldore to a -L../../../lib/i386 -ldore so that this port
finds this library now.
This commit is contained in:
Andreas Schulz 1995-02-25 17:18:23 +00:00
parent 9ba9cdc0d8
commit 6f98e257b3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=1034

View file

@ -0,0 +1,61 @@
*** examples/generic/makefile.ORIG Thu Jan 12 23:13:41 1995
--- examples/generic/makefile Sat Feb 25 15:30:02 1995
***************
*** 17,23 ****
PRECISION= SINGLE
DORELIB= -ldore
! INCDIR=/usr/include
CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR)
OFILES= render.o run.o
--- 17,23 ----
PRECISION= SINGLE
DORELIB= -ldore
! INCDIR=../../include
CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR)
OFILES= render.o run.o
*** examples/util/makefile.ORIG Thu Jan 12 23:13:44 1995
--- examples/util/makefile Sat Feb 25 15:33:09 1995
***************
*** 19,25 ****
OFILES= copy.o defgroup.o hsvtorgb.o preview.o \
prsarg.o rectmesh.o replace.o stkgrp.o supermesh.o text.o transform.o
! INCDIR=/usr/include
CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR)
all: libdore_util.a
--- 19,25 ----
OFILES= copy.o defgroup.o hsvtorgb.o preview.o \
prsarg.o rectmesh.o replace.o stkgrp.o supermesh.o text.o transform.o
! INCDIR=../../include
CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR)
all: libdore_util.a
*** examples/programs/simple/makefile.ORIG Thu Jan 12 23:13:55 1995
--- examples/programs/simple/makefile Sat Feb 25 16:56:59 1995
***************
*** 15,23 ****
# EXPRESS OR IMPLIED.
PRECISION= SINGLE
! DORELIB = -ldore
! INCDIR=/usr/include
CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR)
LIBS= $(DORELIB) -lX11 -lm
--- 15,23 ----
# EXPRESS OR IMPLIED.
PRECISION= SINGLE
! DORELIB = -L../../../lib/i386 -ldore
! INCDIR=../../../include
CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR)
LIBS= $(DORELIB) -lX11 -lm