aboutsummaryrefslogtreecommitdiff
path: root/databases/sqlite2/files/patch-makefile
blob: 1097d4d24b13acfecbd6cf860f403cbaef0e79fd (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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
*** ../../tmp/sqlite/Makefile.in	Sat May 17 04:26:29 2003
--- Makefile.in	Sun Jun  8 18:54:50 2003
***************
*** 33,39 ****
  prefix = @prefix@
  exec_prefix = @exec_prefix@
  INSTALL = @INSTALL@
! LIBTOOL = ./libtool
  
  # Compiler options needed for programs that use the TCL library.
  #
--- 33,39 ----
  prefix = @prefix@
  exec_prefix = @exec_prefix@
  INSTALL = @INSTALL@
! LIBTOOL = @prefix@/bin/libtool
  
  # Compiler options needed for programs that use the TCL library.
  #
***************
*** 166,172 ****
            | awk '{print $$5,$$6}' >last_change
  
  libsqlite.la:	$(LIBOBJ)
! 	$(LIBTOOL) $(TCC) -o libsqlite.la $(LIBOBJ) -rpath $(exec_prefix)/lib
  
  libtclsqlite.la:	tclsqlite.lo libsqlite.la
  	$(LIBTOOL) $(TCC) -o libtclsqlite.la tclsqlite.lo \
--- 166,172 ----
            | awk '{print $$5,$$6}' >last_change
  
  libsqlite.la:	$(LIBOBJ)
! 	$(LIBTOOL) $(TCC) -o libsqlite.la $(LIBOBJ) -rpath $(exec_prefix)/lib -version-info 2:0:0
  
  libtclsqlite.la:	tclsqlite.lo libsqlite.la
  	$(LIBTOOL) $(TCC) -o libtclsqlite.la tclsqlite.lo \
***************
*** 338,404 ****
  	./testfixture $(TOP)/test/quick.test
  
  index.html:	$(TOP)/www/index.tcl last_change
! 	tclsh $(TOP)/www/index.tcl `cat $(TOP)/VERSION` >index.html
  
  sqlite.html:	$(TOP)/www/sqlite.tcl
! 	tclsh $(TOP)/www/sqlite.tcl >sqlite.html
  
  c_interface.html:	$(TOP)/www/c_interface.tcl
! 	tclsh $(TOP)/www/c_interface.tcl >c_interface.html
  
  changes.html:	$(TOP)/www/changes.tcl
! 	tclsh $(TOP)/www/changes.tcl >changes.html
  
  lang.html:	$(TOP)/www/lang.tcl
! 	tclsh $(TOP)/www/lang.tcl >lang.html
  
  vdbe.html:	$(TOP)/www/vdbe.tcl
! 	tclsh $(TOP)/www/vdbe.tcl >vdbe.html
  
  arch.html:	$(TOP)/www/arch.tcl
! 	tclsh $(TOP)/www/arch.tcl >arch.html
  
  arch.png:	$(TOP)/www/arch.png
  	cp $(TOP)/www/arch.png .
  
  opcode.html:	$(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c
! 	tclsh $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c >opcode.html
  
  mingw.html:	$(TOP)/www/mingw.tcl
! 	tclsh $(TOP)/www/mingw.tcl >mingw.html
  
  tclsqlite.html:	$(TOP)/www/tclsqlite.tcl
! 	tclsh $(TOP)/www/tclsqlite.tcl >tclsqlite.html
  
  speed.html:	$(TOP)/www/speed.tcl
! 	tclsh $(TOP)/www/speed.tcl >speed.html
  
  faq.html:	$(TOP)/www/faq.tcl
! 	tclsh $(TOP)/www/faq.tcl >faq.html
  
  formatchng.html:	$(TOP)/www/formatchng.tcl
! 	tclsh $(TOP)/www/formatchng.tcl >formatchng.html
  
  conflict.html:	$(TOP)/www/conflict.tcl
! 	tclsh $(TOP)/www/conflict.tcl >conflict.html
  
  download.html:	$(TOP)/www/download.tcl
! 	tclsh $(TOP)/www/download.tcl >download.html
  
  omitted.html:	$(TOP)/www/omitted.tcl
! 	tclsh $(TOP)/www/omitted.tcl >omitted.html
  
  datatypes.html:	$(TOP)/www/datatypes.tcl
! 	tclsh $(TOP)/www/datatypes.tcl >datatypes.html
  
  quickstart.html:	$(TOP)/www/quickstart.tcl
! 	tclsh $(TOP)/www/quickstart.tcl >quickstart.html
  
  fileformat.html:	$(TOP)/www/fileformat.tcl
! 	tclsh $(TOP)/www/fileformat.tcl >fileformat.html
  
  nulls.html:	$(TOP)/www/nulls.tcl
! 	tclsh $(TOP)/www/nulls.tcl >nulls.html
  
  
  # Files to be published on the website.
--- 338,404 ----
  	./testfixture $(TOP)/test/quick.test
  
  index.html:	$(TOP)/www/index.tcl last_change
! 	$(TCLSH) $(TOP)/www/index.tcl `cat $(TOP)/VERSION` >index.html
  
  sqlite.html:	$(TOP)/www/sqlite.tcl
! 	$(TCLSH) $(TOP)/www/sqlite.tcl >sqlite.html
  
  c_interface.html:	$(TOP)/www/c_interface.tcl
! 	$(TCLSH) $(TOP)/www/c_interface.tcl >c_interface.html
  
  changes.html:	$(TOP)/www/changes.tcl
! 	$(TCLSH) $(TOP)/www/changes.tcl >changes.html
  
  lang.html:	$(TOP)/www/lang.tcl
! 	$(TCLSH) $(TOP)/www/lang.tcl >lang.html
  
  vdbe.html:	$(TOP)/www/vdbe.tcl
! 	$(TCLSH) $(TOP)/www/vdbe.tcl >vdbe.html
  
  arch.html:	$(TOP)/www/arch.tcl
! 	$(TCLSH) $(TOP)/www/arch.tcl >arch.html
  
  arch.png:	$(TOP)/www/arch.png
  	cp $(TOP)/www/arch.png .
  
  opcode.html:	$(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c
! 	$(TCLSH) $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c >opcode.html
  
  mingw.html:	$(TOP)/www/mingw.tcl
! 	$(TCLSH) $(TOP)/www/mingw.tcl >mingw.html
  
  tclsqlite.html:	$(TOP)/www/tclsqlite.tcl
! 	$(TCLSH) $(TOP)/www/tclsqlite.tcl >tclsqlite.html
  
  speed.html:	$(TOP)/www/speed.tcl
! 	$(TCLSH) $(TOP)/www/speed.tcl >speed.html
  
  faq.html:	$(TOP)/www/faq.tcl
! 	$(TCLSH) $(TOP)/www/faq.tcl >faq.html
  
  formatchng.html:	$(TOP)/www/formatchng.tcl
! 	$(TCLSH) $(TOP)/www/formatchng.tcl >formatchng.html
  
  conflict.html:	$(TOP)/www/conflict.tcl
! 	$(TCLSH) $(TOP)/www/conflict.tcl >conflict.html
  
  download.html:	$(TOP)/www/download.tcl
! 	$(TCLSH) $(TOP)/www/download.tcl >download.html
  
  omitted.html:	$(TOP)/www/omitted.tcl
! 	$(TCLSH) $(TOP)/www/omitted.tcl >omitted.html
  
  datatypes.html:	$(TOP)/www/datatypes.tcl
! 	$(TCLSH) $(TOP)/www/datatypes.tcl >datatypes.html
  
  quickstart.html:	$(TOP)/www/quickstart.tcl
! 	$(TCLSH) $(TOP)/www/quickstart.tcl >quickstart.html
  
  fileformat.html:	$(TOP)/www/fileformat.tcl
! 	$(TCLSH) $(TOP)/www/fileformat.tcl >fileformat.html
  
  nulls.html:	$(TOP)/www/nulls.tcl
! 	$(TCLSH) $(TOP)/www/nulls.tcl >nulls.html
  
  
  # Files to be published on the website.
***************
*** 432,444 ****
  
  install:	sqlite libsqlite.la sqlite.h
  	$(INSTALL) -d $(exec_prefix)/lib
! 	$(LIBTOOL) $(INSTALL) libsqlite.la $(exec_prefix)/lib
  	$(INSTALL) -d $(exec_prefix)/bin
! 	$(LIBTOOL) $(INSTALL) sqlite $(exec_prefix)/bin
  	$(INSTALL) -d $(prefix)/include
  	$(INSTALL) -m 0644 sqlite.h $(prefix)/include
! 	$(INSTALL) -d $(exec_prefix)/lib/pkgconfig; \
! 	$(INSTALL) -m 0644 sqlite.pc $(exec_prefix)/lib/pkgconfig; \
  
  clean:	
  	rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h opcodes.*
--- 432,448 ----
  
  install:	sqlite libsqlite.la sqlite.h
  	$(INSTALL) -d $(exec_prefix)/lib
! 	$(INSTALL) .libs/libsqlite.a $(prefix)/lib
! 	$(INSTALL) .libs/libsqlite.so $(prefix)/lib
! 	$(INSTALL) .libs/libsqlite.so.2 $(prefix)/lib
  	$(INSTALL) -d $(exec_prefix)/bin
! 	$(INSTALL) .libs/sqlite $(exec_prefix)/bin
  	$(INSTALL) -d $(prefix)/include
  	$(INSTALL) -m 0644 sqlite.h $(prefix)/include
! 
! install-tcl:	libtclsqlite.la
! 	$(INSTALL) -d $(prefix)/lib/sqlite
! 	$(INSTALL) .libs/libtclsqlite.so $(prefix)/lib/sqlite
  
  clean:	
  	rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h opcodes.*