Files
@ 1106020c53dd
Branch filter:
Location: light9/dmx_usb_module/Makefile - annotation
1106020c53dd
456 B
text/x-makefile
update readme
Ignore-this: 399f563f7fb9e98a8f5364d7a27f0fb4
Ignore-this: 399f563f7fb9e98a8f5364d7a27f0fb4
4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 | #
# $Id: Makefile 38 2004-09-11 11:15:09Z erwin $
#
ifneq ($(KERNELRELEASE),)
obj-m := dmx_usb.o
else
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
gcc -O2 -pipe dmx_usb_test.c -o dmx_usb_test
endif
clean:
rm -f *.o *.ko
rm -f dmx_usb_test
rm -f dmx_usb.mod.c
rm -f .dmx_usb.*
rm -rf .tmp_versions
drew:
gcc dmx_usb.c -o dmx_usb.o -I/usr/src/linux-source-2.6.15/include
|