Changeset 353719a for Makefile.am


Ignore:
Timestamp:
Feb 19, 2013, 8:29:04 PM (11 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10
Children:
5001a3d
Parents:
06e04a9
git-author:
David Benjamin <davidben@mit.edu> (06/09/12 16:07:20)
git-committer:
David Benjamin <davidben@mit.edu> (02/19/13 20:29:04)
Message:
Start of perlvariables iteration N+1

New plan: the C <-> perl interface deals entirely with strings. Storage
is entirely perl-side. C does not know and doesn't care about the
underlying perl-side types. Note that this means an "int" variable in C
land and an "int" variable in perl land have no relation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r06e04a9 r353719a  
    3939
    4040CODELIST_SRCS=message.c mainwin.c popwin.c zephyr.c messagelist.c \
    41      commands.c global.c text.c fmtext.c gmarshal_funcs.c editwin.c \
     41     commands.c global.c text.c fmtext.c editwin.c \
    4242     util.c logging.c \
    4343     perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \
     
    5252BASE_SRCS = $(CODELIST_SRCS) $(NORMAL_SRCS)
    5353
    54 GEN_C = varstubs.c perlglue.c
    55 GEN_H = owl_prototypes.h
     54GEN_C = varstubs.c perlglue.c gmarshal_funcs.c
     55GEN_H = owl_prototypes.h gmarshal_funcs.h
    5656
    5757BUILT_SOURCES = $(GEN_C) $(GEN_H)
     
    7575        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
    7676
     77gmarshal_funcs.h: marshal_types
     78        glib-genmarshal --header $< > $@
     79gmarshal_funcs.c: marshal_types
     80        glib-genmarshal --body $< > $@
     81
    7782# For emacs flymake-mode
    7883check-syntax: proto
Note: See TracChangeset for help on using the changeset viewer.