Skip to content

Commit

Permalink
Fix last failure on t/codingstd/checkdepend.pl
Browse files Browse the repository at this point in the history
(I think I did this differently in a branch. This way is better.)
  • Loading branch information
coke committed Dec 23, 2010
1 parent 4b96417 commit d70323e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 5 additions & 2 deletions src/dynpmc/Defines.in
Expand Up @@ -19,7 +19,7 @@ DYNPMC_FOO_OBJS = \
src/dynpmc/foo$(O) \
src/dynpmc/foo2$(O)

DYNPMC_H_FILES = \
DYNPMC_H_FILES_MIN = \
include/parrot/caches.h \
include/parrot/call.h \
include/parrot/cclass.h \
Expand Down Expand Up @@ -76,7 +76,10 @@ DYNPMC_H_FILES = \
include/parrot/vtable.h \
include/parrot/vtables.h \
include/parrot/warnings.h \
include/pmc/pmc_callcontext.h \
include/pmc/pmc_callcontext.h

DYNPMC_H_FILES = \
$(DYNPMC_H_FILES_MIN) \
include/pmc/pmc_continuation.h \
include/pmc/pmc_default.h

Expand Down
6 changes: 5 additions & 1 deletion src/dynpmc/Rules.in
Expand Up @@ -39,7 +39,11 @@ $(DYNEXT_DIR)/foo_group$(LOAD_EXT): $(DYNPMC_FOO_OBJS) src/dynpmc/foo_group$(O)
#IF(win32): if exist $@.manifest mt.exe -nologo -manifest $@.manifest -outputresource:$@;2
#IF(cygwin or hpux): $(CHMOD) 0775 $@

src/dynpmc/foo_group$(O): src/dynpmc/foo.c src/dynpmc/foo2.c $(DYNPMC_H_FILES)
src/dynpmc/foo_group$(O): \
src/dynpmc/pmc_foo2.h \
src/dynpmc/pmc_foo.h \
src/dynpmc/foo_group.c \
$(DYNPMC_H_FILES_MIN)

src/dynpmc/foo_group.c: $(DYNPMC_FOO_OBJS)
$(PMC2C) --library foo_group --c $(DYNPMC_FOO)
Expand Down

0 comments on commit d70323e

Please sign in to comment.