Subversion Repositories f9daq

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 f9daq 1
#****************************************************************************
2
# Copyright (C) 2001-2004 ARW Elektronik Germany
3
#
4
#
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
9
#
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
#
19
# Maintainer(s): Klaus Hitschler (klaus.hitschler@gmx.de)
20
#****************************************************************************
21
 
22
#****************************************************************************
23
#
24
# Makefile - global makefile for ARW Elektronik PCIVME interfaces driver
25
#            and library and test programs
26
#
27
# $Log: Makefile,v $
28
# Revision 1.1  2004/08/13 19:36:03  klaus
29
# conversion to kernel-version 2.6, released version 3.0
30
#
31
#
32
#****************************************************************************
33
 
34
all:
35
	cd driver;\
36
	make;\
37
	cd ../lib;\
38
	make;\
39
	cd ../test;\
40
	make;\
41
	cd ..
42
 
43
clean:
44
	cd driver;\
45
	make clean;\
46
	cd ../lib;\
47
	make clean;\
48
	cd ../test;\
49
	make clean;\
50
	cd ..
51
 
52
# root installation only
53
install:
54
	cd driver;\
55
	make install;\
56
	cd ../lib;\
57
	make install;\
58
	cd ..
59
 
60
 
61
 
62
 
63