aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjal2 <jal2>2004-08-13 22:42:06 +0000
committerjal2 <jal2>2004-08-13 22:42:06 +0000
commitf7958da14d95174f1aed1bf26e3821956025eae6 (patch)
treef019155a781533d3b59ae6673f0e3bd51ab28177 /Makefile
parent2449faa03d870d83f1230b8f4b93b469227e632e (diff)
- version 0.12beta16
- removed -g for 2.6.x build (make the .o .ko files smaller) - install: don't rename old driver into *.orig as the 2.4.x depmod seems to parse _all_ files under /lib/modules/`uname -r`/; remove old version now (and all *.orig)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index a5c3cf9..8b20ba7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-#$Id: Makefile,v 1.37 2004/08/13 00:17:22 jal2 Exp $
+#$Id: Makefile,v 1.38 2004/08/13 22:42:06 jal2 Exp $
-VERSION = 0.12beta15
+VERSION = 0.12beta16
CC=gcc
@@ -63,11 +63,11 @@ modules:
mkdir -p .tmp_versions
-cp $(KERNEL_SRC)/.tmp_versions/*.mod $(MODVERDIR)
$(MAKE) -C $(KERNEL_SRC) SUBDIRS=$(SRCDIR) MODVERDIR=$(MODVERDIR) \
- EXTRA_CFLAGS="-g -DDRIVER_VERSION=\\\"v$(DVERSION)\\\" $(FW_DL)" modules
+ EXTRA_CFLAGS="-DDRIVER_VERSION=\\\"v$(DVERSION)\\\" $(FW_DL)" modules
mv_old:
for i in $(MODULES:%.o=%.ko); do \
- find $(DEL_MODULE_DIR) -name $$i -exec mv {} {}.orig \; ;done
+ find $(DEL_MODULE_DIR) -name $$i -exec rm -f {} {}.orig \; ;done
install: all mv_old
mkdir -p $(MODULE_DIR)
@@ -104,7 +104,7 @@ all: $(MODULES)
mv_old:
for i in $(MODULES); do \
- find $(DEL_MODULE_DIR) -name $$i -exec mv {} {}.orig \; ;done
+ find $(DEL_MODULE_DIR) -name $$i -exec rm -f {} {}.orig \; ;done
install: all mv_old
mkdir -p $(MODULE_DIR)