blob: 480f5e09a036af3bc5e779683d5241f4c6662ce8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
*** 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 Sun Mar 19 14:05:29 1995
***************
*** 15,25 ****
# EXPRESS OR IMPLIED.
PRECISION= SINGLE
! DORELIB = -ldore
! INCDIR=/usr/include
CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR)
! LIBS= $(DORELIB) -lX11 -lm
all: render
--- 15,25 ----
# EXPRESS OR IMPLIED.
PRECISION= SINGLE
! DORELIB = -L../../../lib/i386 -ldore
! INCDIR=../../../include
CFLAGS= -DDORE_REAL_$(PRECISION) -I$(INCDIR)
! LIBS= $(DORELIB) -L${PREFIX}/lib -lX11 -lm
all: render
|