diff options
author | crunchy <crunchy> | 2002-09-21 08:30:24 +0000 |
---|---|---|
committer | crunchy <crunchy> | 2002-09-21 08:30:24 +0000 |
commit | ac0b397708f770dd3081a7742f4f764385a9ad91 (patch) | |
tree | 1557386b00f308a4423db882d82983a38590c09c | |
parent | ad59572a60b2f707992b2e04c9dbf3a2b09cb832 (diff) | |
download | mpiosh-ac0b397708f770dd3081a7742f4f764385a9ad91.tar.gz mpiosh-ac0b397708f770dd3081a7742f4f764385a9ad91.tar.bz2 mpiosh-ac0b397708f770dd3081a7742f4f764385a9ad91.zip |
Makefile.am fixed
-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@ |