Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
update paths in Makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
fperrad committed Feb 24, 2009
1 parent 6ee6800 commit a98ce86
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Configure.pl
Expand Up @@ -44,8 +44,8 @@ sub create_makefiles {
my %config = @_;
my %makefiles = (
'config/makefiles/root.in' => 'Makefile',
'config/makefiles/pmc.in' => 'pmc/Makefile',
'config/makefiles/ops.in' => 'ops/Makefile',
'config/makefiles/pmc.in' => 'src/pmc/Makefile',
'config/makefiles/ops.in' => 'src/ops/Makefile',
);
my $build_tool = $config{libdir} . $config{versiondir}
. '/tools/dev/gen_makefile.pl';
Expand Down
4 changes: 2 additions & 2 deletions config/makefiles/ops.in
Expand Up @@ -67,8 +67,8 @@ install:
uninstall:
$(RM_F) "$(INSTALL_DIR)/wmls_ops*$(LOAD_EXT)"

Makefile: ../config/makefiles/ops.in
cd .. && $(PERL) Configure.pl
Makefile: ../../config/makefiles/ops.in
cd ../.. && $(PERL) Configure.pl

clean:
$(RM_F) "*$(LOAD_EXT)" "*$(O)" "*.c" "*.h" \
Expand Down
4 changes: 2 additions & 2 deletions config/makefiles/pmc.in
Expand Up @@ -98,8 +98,8 @@ install:
uninstall:
$(RM_F) $(INSTALL_DIR)/$(WMLSCRIPT_GROUP)$(LOAD_EXT)

Makefile: ../config/makefiles/pmc.in
cd .. && $(PERL) Configure.pl
Makefile: ../../config/makefiles/pmc.in
cd ../.. && $(PERL) Configure.pl

clean:
$(RM_F) "*$(LOAD_EXT)" "*$(O)" "*.c" "*.h" "*.dump" \
Expand Down
6 changes: 3 additions & 3 deletions config/makefiles/root.in
Expand Up @@ -16,9 +16,9 @@ LOAD_EXT = @load_ext@
O = @o@

# Various paths
PMC_DIR = pmc
OPS_DIR = ops
LIBPATH = runtime
PMC_DIR = src/pmc
OPS_DIR = src/ops
LIBPATH = src/runtime

## Setup some commands
MAKE = @make_c@
Expand Down

0 comments on commit a98ce86

Please sign in to comment.