Files
@ 2f492b4ac301
Branch filter:
Location: light9/dmx_usb_module/Makefile - annotation
2f492b4ac301
443 B
text/x-makefile
put curve items under manipulator items
Ignore-this: b608d7b5749f5b0a3551f5f23499d0e0
Ignore-this: b608d7b5749f5b0a3551f5f23499d0e0
4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 2b2ad8e7cb9f 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 4e60444605f6 2b2ad8e7cb9f 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 -Wall 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
rm -f Module.markers modules.order Module.symvers
|