diff -r 9d7453c16ade -r 4bbe090553f7 Makefile --- a/Makefile Mon May 29 09:54:18 2006 +0000 +++ b/Makefile Mon Jun 26 15:04:06 2006 +0000 @@ -1,6 +1,8 @@ #------------------------------------------------------------------------------ # -# EtherCAT Makefile +# Makefile +# +# IgH EtherCAT master # # $Id$ # @@ -53,9 +55,17 @@ KERNEL_DIR := /lib/modules/$(KERNEL)/build CURRENT_DIR := $(shell pwd) +INSTALL_MOD_DIR := ethercat modules: - $(MAKE) -C $(KERNEL_DIR) M=$(CURRENT_DIR) + $(MAKE) -C $(KERNEL_DIR) M=$(CURRENT_DIR) modules + +install: modules_install + @script/install.sh $(KERNEL) + +modules_install: + $(MAKE) -C $(KERNEL_DIR) M=$(CURRENT_DIR) \ + INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) modules_install clean: cleandoc $(MAKE) -C $(KERNEL_DIR) M=$(CURRENT_DIR) clean @@ -66,9 +76,6 @@ cleandoc: @rm -rf doc -install: - @script/install.sh $(KERNEL) - #------------------------------------------------------------------------------ endif