]> oss.titaniummirror.com Git - cp210x.git/blobdiff - Makefile.dkms
Top level make is now working, and dpkg-buildpackage works on the result.
[cp210x.git] / Makefile.dkms
index 6488d65f6e0080d9d690c349b77271a374452ff8..c84885b2887fa0cab4c0b1c83c187c853f1d6a92 100755 (executable)
@@ -3,16 +3,15 @@
 STRIP  = strip --strip-unneeded --remove-section=.comment --remove-section=.note
 
 all:
-       -rm -rf builddir
-       cp -a src builddir
-       cd builddir && ./configure -kver $(KVER)
-       test -f builddir/Makefile.go
-       $(MAKE) -C builddir -f Makefile.go
-       cp builddir/cp2101.ko cp210x.ko
+       ./configure -kver $(KVER)
+       test -f Makefile.config
+       $(MAKE) -f Makefile.go
+       cp cp2101.ko cp210x.ko
        $(STRIP) cp210x.ko
 
 clean:
-       -rm -rf builddir cp210x.ko
+       test -f Makefile.config && $(MAKE) -f Makefile.go distclean || exit 0
+       -rm -rf cp210x.ko
 
 
 .PHONY: all clean