author | Florian Pose <fp@igh-essen.com> |
Wed, 10 May 2006 07:53:50 +0000 | |
changeset 222 | 321eba07fafb |
parent 221 | 9864f39319a5 |
child 225 | 9e8150db6fc8 |
permissions | -rw-r--r-- |
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
1 |
#------------------------------------------------------------------------------ |
220 | 2 |
# |
3 |
# Makefile |
|
4 |
# |
|
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
5 |
# RTAI sample module for the IgH EtherCAT master. |
220 | 6 |
# |
7 |
# $Id$ |
|
8 |
# |
|
9 |
# Copyright (C) 2006 Florian Pose, Ingenieurgemeinschaft IgH |
|
10 |
# |
|
11 |
# This file is part of the IgH EtherCAT Master. |
|
12 |
# |
|
13 |
# The IgH EtherCAT Master is free software; you can redistribute it |
|
14 |
# and/or modify it under the terms of the GNU General Public License |
|
15 |
# as published by the Free Software Foundation; version 2 of the License. |
|
16 |
# |
|
17 |
# The IgH EtherCAT Master is distributed in the hope that it will be |
|
18 |
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
19 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
20 |
# GNU General Public License for more details. |
|
21 |
# |
|
22 |
# You should have received a copy of the GNU General Public License |
|
23 |
# along with the IgH EtherCAT Master; if not, write to the Free Software |
|
24 |
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|
25 |
# |
|
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
26 |
#------------------------------------------------------------------------------ |
220 | 27 |
|
28 |
ifneq ($(KERNELRELEASE),) |
|
29 |
||
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
30 |
#------------------------------------------------------------------------------ |
220 | 31 |
# kbuild section |
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
32 |
#------------------------------------------------------------------------------ |
220 | 33 |
|
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
34 |
obj-m := ec_rtai_sample.o |
220 | 35 |
|
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
36 |
ec_rtai_sample-objs := rtai_sample.o |
220 | 37 |
|
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
38 |
#------------------------------------------------------------------------------ |
220 | 39 |
|
40 |
else |
|
41 |
||
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
42 |
#------------------------------------------------------------------------------ |
220 | 43 |
# default section |
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
44 |
#------------------------------------------------------------------------------ |
220 | 45 |
|
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
46 |
ifneq ($(wildcard kernel.conf),) |
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
47 |
include kernel.conf |
220 | 48 |
else |
49 |
KERNELDIR = /usr/src/linux |
|
50 |
endif |
|
51 |
||
52 |
modules: |
|
53 |
$(MAKE) -C $(KERNELDIR) M=`pwd` |
|
54 |
||
55 |
clean: |
|
56 |
$(MAKE) -C $(KERNELDIR) M=`pwd` clean |
|
57 |
||
222
321eba07fafb
Changed RTAI sample naming.
Florian Pose <fp@igh-essen.com>
parents:
221
diff
changeset
|
58 |
#------------------------------------------------------------------------------ |
220 | 59 |
|
60 |
endif |