Skip to content

Commit

Permalink
Put pipp_group.so into the hll dir 'dynext'
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Mar 8, 2009
1 parent 4c12f7c commit c49602b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build/templates/Makefile.in
Expand Up @@ -10,6 +10,7 @@ EXE = @exe@
BUILD_DIR = @build_dir@
LIBRARY_DIR = $(BUILD_DIR)/runtime/parrot/library
PMC_DIR = src/pmc
DYNEXT_DIR = dynext

# Set up commands
MAKE = @make_c@
Expand All @@ -20,7 +21,7 @@ NQP = $(BUILD_DIR)/compilers/nqp/nqp.pbc
PCT = $(BUILD_DIR)/runtime/parrot/library/PCT.pbc
PBC_TO_EXE = $(BUILD_DIR)/pbc_to_exe$(EXE)

PIPP_GROUP = $(PMC_DIR)/pipp_group$(LOAD_EXT)
PIPP_GROUP = $(DYNEXT_DIR)/pipp_group$(LOAD_EXT)

PMC_DEPS = \
$(PMC_DIR)/php.pmc \
Expand Down
6 changes: 3 additions & 3 deletions build/templates/src/pmc/Makefile.in
Expand Up @@ -10,13 +10,13 @@ CFLAGS = @ccflags@ @cc_shared@ @cc_debug@ @ccwarn@ @cc_hasjit@ @cg_flag@
# Set up directories
BUILD_DIR = @build_dir@
INCLUDE_DIR = $(BUILD_DIR)/include
PARROT_DYNEXT = $(BUILD_DIR)/runtime/parrot/dynext
DYNEXT_DIR = ../../dynext

# Set up extensions
LOAD_EXT = @load_ext@
O = @o@

PIPP_GROUP = pipp_group$(LOAD_EXT)
PIPP_GROUP = $(DYNEXT_DIR)/pipp_group$(LOAD_EXT)

PMCS = \
php \
Expand Down Expand Up @@ -60,7 +60,7 @@ $(PIPP_GROUP): $(PMC_SOURCES)
$(PMCBUILD) generate $(PMCS)
$(PMCBUILD) compile $(PMCS)
$(PMCBUILD) linklibs $(PMCS)
$(PMCBUILD) copy "--destination=$(PARROT_DYNEXT)" $(PMCS)
$(PMCBUILD) copy "--destination=$(DYNEXT_DIR)" $(PMCS)

# cleaning up
clean:
Expand Down

0 comments on commit c49602b

Please sign in to comment.