Changeset 8ee73f8d for Makefile.in


Ignore:
Timestamp:
Jun 30, 2002, 2:54:22 AM (22 years ago)
Author:
Erik Nygren <nygren@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
039213e
Parents:
d36f2cb
Message:
	Fixed a memory reference bug in delete and undelete commands.
	Added support for perl to call directly back into owl.
	Changed the implementation of owl::command("...") to immediately
	        call back into owl.  This allows perl to get the return
		value of strings returned by owl commands.
	Added the getview command which returns the name of the current
	        view's filter.
	Added the getvar command which returns the value of a variable.
	Added an example to examples/owlconf.erik which uses TAB to
		narrow and restore the view.
	Added an example to examples/owlconf.erik which uses M-c to
		color messages matching the current one green.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r1aee7d9 r8ee73f8d  
    77CFLAGS=@CFLAGS@
    88LDFLAGS=@LDFLAGS@
     9XSUBPPDIR=@XSUBPPDIR@
    910
    1011OBJS=list.o message.o mainwin.o popwin.o zephyr.o messagelist.o commands.o \
     
    1213     functions.o zwrite.o viewwin.o help.o filter.o regex.o history.o view.o \
    1314     dict.o variable.o varstubs.o filterelement.o \
    14      keypress.o keymap.o keybinding.o cmd.o context.o
     15     keypress.o keymap.o keybinding.o cmd.o context.o perlglue.o
    1516
    16 AUTOGEN=owl_prototypes.h varstubs.c
     17AUTOGEN=owl_prototypes.h varstubs.c perlglue.c
    1718
    1819owl: $(AUTOGEN) $(OBJS) owl.o
     
    3334proto: owl_prototypes.h
    3435
     36perlglue.c: perlglue.xs
     37        perl $(XSUBPPDIR)/xsubpp -typemap $(XSUBPPDIR)/typemap -prototypes perlglue.xs > perlglue.c
    3538
    3639varstubs.c: variable.c stubgen.pl
Note: See TracChangeset for help on using the changeset viewer.