aboutsummaryrefslogtreecommitdiff
path: root/graphics/dore/files/patch-ad
blob: fd0f82d6e8b7aa490a6d593c2ad89584f975ec70 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
*** mk.stdx.orig	Thu Jan 12 14:14:12 1995
--- mk.stdx	Sat Feb 18 20:07:09 1995
***************
*** 24,33 ****
  #
  
  # DORE_LOC is the full pathname of directory containing the dore directory
! DORE_LOC=
  
  # DORE_OBJTYPE is the machine object type
! DORE_OBJTYPE=
  
  # DORE_LIB_NAME specifies the name of the library to be created
  DORE_LIB_NAME=libdore.a
--- 24,33 ----
  #
  
  # DORE_LOC is the full pathname of directory containing the dore directory
! DORE_LOC= ${PREFIX}/lib
  
  # DORE_OBJTYPE is the machine object type
! DORE_OBJTYPE= i386
  
  # DORE_LIB_NAME specifies the name of the library to be created
  DORE_LIB_NAME=libdore.a
***************
*** 38,51 ****
  
  # Link options when combining .o's
  LD=ld
! LDFLAGS=-r -s
  
  # Archive options
  AR=ar
! ARFLAGS=q
  
  # DORE_LIBTOC specifies how to create a table of contents for a library 
! DORE_LIBTOC=ar ts
  
  # Name of system module from doresys_config to be included in build
  DORE_SYSTEM=stdx
--- 38,51 ----
  
  # Link options when combining .o's
  LD=ld
! LDFLAGS=-r
  
  # Archive options
  AR=ar
! ARFLAGS=qc
  
  # DORE_LIBTOC specifies how to create a table of contents for a library 
! DORE_LIBTOC=ranlib
  
  # Name of system module from doresys_config to be included in build
  DORE_SYSTEM=stdx
***************
*** 70,86 ****
  DORE_FONTTYPE=default_type
  
  # Install directory for fonts and error message file used by Dore
! DORE_DATADIR=/usr/dore/data
  
  # 
  # Installing Dore
  #
  
  # Install directory for Dore library
! DORE_LIBDIR=/usr/lib
  
  # Install directory for user include files
! DORE_INCDIR=/usr/include
  
  ######################################################################
  SHELL=/bin/sh
--- 70,86 ----
  DORE_FONTTYPE=default_type
  
  # Install directory for fonts and error message file used by Dore
! DORE_DATADIR=${PREFIX}/lib/dore/data
  
  # 
  # Installing Dore
  #
  
  # Install directory for Dore library
! DORE_LIBDIR=${PREFIX}/lib
  
  # Install directory for user include files
! DORE_INCDIR=${PREFIX}/include
  
  ######################################################################
  SHELL=/bin/sh
***************
*** 90,96 ****
  
  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  
! dore:	compile library
  
  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  
--- 90,103 ----
  
  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  
! all: dore
! 
! dore:	pre-make compile library data prep-for-examples
! 
! pre-make:
! 	mkdir -p ${DORE_DATADIR}
! 	mkdir -p ${DORE_LIBDIR}
! 	mkdir -p ${DORE_INCDIR}
  
  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  
***************
*** 170,175 ****
--- 177,184 ----
  
  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  
+ install: install_dore install_data install_example
+ 
  install_dore: check_doreloc  
  	@ echo "Installing Dore' library and include files..."
  	@ if [ -n "$(DORE_LIBDIR)"  ]; then			\
***************
*** 331,336 ****
--- 340,356 ----
  
  
  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
+ 
+ prep-for-examples:
+ 	@( cd examples/generic; ${MAKE} )
+ 	@( cd examples/util; ${MAKE} )
+ 	@( cd examples/programs/simple; ${MAKE} )
+ 
+ install_example:
+ 	@install -c -m 755 -s examples/programs/simple/render ${PREFIX}/bin/dore_example
+ 	@echo "Ok, look at ${PREFIX}/bin/dore_example for an example of"
+ 	@echo "Dore in action.  You may also wish to look in the work/dore/examples"
+ 	@echo "directory for more dore examples."
  
  FORCE_IT: