diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | kernel/Makefile.am | 13 |
2 files changed, 9 insertions, 9 deletions
@@ -1,3 +1,8 @@ +2002-09-21 Andreas Buesching <crunchy@tzi.de> + + * kernel/Makefile.am: add target clean and fixed the install + target to not strip the kernel module + 2002-09-21 Yuji Touya <salmoon@users.sourceforge.net> * README: Add a few lines about Hot plug for 2.4.x diff --git a/kernel/Makefile.am b/kernel/Makefile.am index 72671c2..63932ba 100644 --- a/kernel/Makefile.am +++ b/kernel/Makefile.am @@ -9,14 +9,9 @@ all: mpio.o mpio.o: mpio.c $(CC) -c $(KCFLAGS) $(INCLUDES) $< +clean: + rm -f mpio.o + install-data-local: $(mkinstalldirs) $(DESTDIR)@MODULE_PATH@ - $(INSTALL_PROGRAM) -m 644 mpio.o $(DESTDIR)@MODULE_PATH@ - -# install-strip: -# $(mkinstalldirs) $(DESTDIR)@MODULE_PATH@ -# $(INSTALL_PROGRAM) -m 644 mpio.o $(DESTDIR)@MODULE_PATH@ - -# install: -# $(mkinstalldirs) $(DESTDIR)@MODULE_PATH@ -# $(INSTALL_PROGRAM) -m 644 mpio.o $(DESTDIR)@MODULE_PATH@ + $(INSTALL_SCRIPT) -m 644 mpio.o $(DESTDIR)@MODULE_PATH@ |