Skip to content

Commit

Permalink
fix makefile to generate proper install paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Nov 12, 2009
1 parent bb83303 commit 6e7f275
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/Makefile.in
Expand Up @@ -3,7 +3,7 @@ PMC_INCLUDE_DIR = @includedir@@versiondir@/pmc
LIB_DIR = @libdir@@versiondir@
SRC_DIR = @srcdir@@versiondir@
TOOLS_DIR = @libdir@@versiondir@/tools
INSTALL_DIR = $(LIBDIR)/dynpmc
INSTALL_DIR = $(LIB_DIR)/dynext

LOAD_EXT = @load_ext@
O = @o@
Expand Down Expand Up @@ -61,7 +61,7 @@ realclean: clean

install: all
#IF(cygwin or hpux): CHMOD 0775 linalg_group$(LOAD_EXT)
$(CP) linalg_group$(LOAD_EXT) $(INSTALL_DIR)
$(CP) $(DYNEXT_DIR)/linalg_group$(LOAD_EXT) $(INSTALL_DIR)

uninstall:
$(RM_F) $(INSTALL_DIR)/linalg_group$(LOAD_EXT)
Expand Down

0 comments on commit 6e7f275

Please sign in to comment.