Changeset df49ff6 for Makefile.am


Ignore:
Timestamp:
Jul 22, 2009, 12:16:59 AM (15 years ago)
Author:
Anders Kaseorg <andersk@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
1ad4a4a
Parents:
b00c0a1
git-author:
Anders Kaseorg <andersk@mit.edu> (07/22/09 00:07:59)
git-committer:
Anders Kaseorg <andersk@mit.edu> (07/22/09 00:16:59)
Message:
Makefile.am: Explicitly list the inputs to stubgen.pl and codelist.pl.

The Makefile was missing owl.c and zcrypt.c as dependencies of
owl_prototypes.h.  This should prevent such problems from reappearing.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r0b65bd7 rdf49ff6  
    4343        perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes perlglue.xs > perlglue.c
    4444
    45 varstubs.c: variable.c stubgen.pl
    46         perl stubgen.pl > varstubs.c
     45varstubs.c: stubgen.pl variable.c
     46        perl $< $(filter-out $<,$+) > $@
    4747
    4848# Only move owl_prototypes.h into place if the new one is different
    49 owl_prototypes.h: codelist.pl varstubs.c $(BASE_SRCS)
    50         perl codelist.pl > owl_prototypes.h.new
     49owl_prototypes.h: codelist.pl varstubs.c $(BASE_SRCS) owl.c zcrypt.c
     50        perl $< $(filter-out $<,$+) > owl_prototypes.h.new
    5151        @diff -U0 $@ owl_prototypes.h.new || { \
    5252         test -f $@ && echo 'Interfaces changed!'; \
Note: See TracChangeset for help on using the changeset viewer.