Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 121489
Collapse All | Expand All

(-)Makefile.in (-2 / +3 lines)
Lines 186-191 Link Here
186
  $(TOP)/src/btree.c \
186
  $(TOP)/src/btree.c \
187
  $(TOP)/src/date.c \
187
  $(TOP)/src/date.c \
188
  $(TOP)/src/func.c \
188
  $(TOP)/src/func.c \
189
  $(TOP)/src/os.c \
189
  $(TOP)/src/os_unix.c \
190
  $(TOP)/src/os_unix.c \
190
  $(TOP)/src/os_win.c \
191
  $(TOP)/src/os_win.c \
191
  $(TOP)/src/pager.c \
192
  $(TOP)/src/pager.c \
Lines 237-243 Link Here
237
# of the most recently modified source code file
238
# of the most recently modified source code file
238
#
239
#
239
last_change:	$(SRC)
240
last_change:	$(SRC)
240
	cat $(SRC) | grep '$$Id: ' | sort +4 | tail -1 \
241
	cat $(SRC) | grep '$$Id: ' | sort -k 5 | tail -1 \
241
          | $(NAWK) '{print $$5,$$6}' >last_change
242
          | $(NAWK) '{print $$5,$$6}' >last_change
242
243
243
libsqlite3.la:	$(LIBOBJ)
244
libsqlite3.la:	$(LIBOBJ)
Lines 333-339 Link Here
333
	$(LTCOMPILE) -c opcodes.c
334
	$(LTCOMPILE) -c opcodes.c
334
335
335
opcodes.c:	opcodes.h $(TOP)/mkopcodec.awk
336
opcodes.c:	opcodes.h $(TOP)/mkopcodec.awk
336
	sort -n -b +2 opcodes.h | $(NAWK) -f $(TOP)/mkopcodec.awk >opcodes.c
337
	sort -n -b -k 3 opcodes.h | $(NAWK) -f $(TOP)/mkopcodec.awk >opcodes.c
337
338
338
opcodes.h:	parse.h $(TOP)/src/vdbe.c $(TOP)/mkopcodeh.awk
339
opcodes.h:	parse.h $(TOP)/src/vdbe.c $(TOP)/mkopcodeh.awk
339
	cat parse.h $(TOP)/src/vdbe.c | $(NAWK) -f $(TOP)/mkopcodeh.awk >opcodes.h
340
	cat parse.h $(TOP)/src/vdbe.c | $(NAWK) -f $(TOP)/mkopcodeh.awk >opcodes.h

Return to bug 121489