equal
deleted
inserted
replaced
1 #---------------------------------------------------------------- |
1 #---------------------------------------------------------------- |
2 # |
2 # |
3 # Makefile |
3 # Makefile |
4 # |
4 # |
5 # Minimales EtherCAT-Modul |
5 # Minimal EtherCAT module. |
6 # |
6 # |
7 # $Id$ |
7 # $Id$ |
8 # |
8 # |
9 #---------------------------------------------------------------- |
9 #---------------------------------------------------------------- |
10 |
10 |
11 ifneq ($(KERNELRELEASE),) |
11 ifneq ($(KERNELRELEASE),) |
12 |
12 |
13 #---------------------------------------------------------------- |
13 #---------------------------------------------------------------- |
14 # Kbuild-Abschnitt |
14 # kbuild section |
15 #---------------------------------------------------------------- |
15 #---------------------------------------------------------------- |
16 |
16 |
17 obj-m := ec_mini.o |
17 obj-m := ec_mini.o |
18 |
18 |
19 ec_mini-objs := mini.o |
19 ec_mini-objs := mini.o |
21 #---------------------------------------------------------------- |
21 #---------------------------------------------------------------- |
22 |
22 |
23 else |
23 else |
24 |
24 |
25 #---------------------------------------------------------------- |
25 #---------------------------------------------------------------- |
26 # Default-Abschnitt |
26 # default section |
27 #---------------------------------------------------------------- |
27 #---------------------------------------------------------------- |
28 |
28 |
29 ifneq ($(wildcard ethercat.conf),) |
29 ifneq ($(wildcard ethercat.conf),) |
30 include ethercat.conf |
30 include ethercat.conf |
31 else |
31 else |