Subversion Repositories f9daq

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
86 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 CAMAC interfaces driver
25
#            and library and test programs
26
#
27
# $Log: Makefile,v $
28
# Revision 1.2  2004/08/12 19:59:02  klaus
29
# conversion to kernel-version 2.6, released version 6.0
30
#
31
# Revision 1.1  2002/04/17 18:57:02  klaus
32
# Last changes after making documentation
33
#
34
#
35
#****************************************************************************
36
 
37
all:
38
	cd driver;\
39
	make;\
40
	cd ../lib;\
41
	make;\
42
	cd ../test;\
43
	make;\
44
	cd ..
45
 
46
clean:
47
	cd driver;\
48
	make clean;\
49
	cd ../lib;\
50
	make clean;\
51
	cd ../test;\
52
	make clean;\
53
	cd ..
54
 
55
# root installation only
56
install:
57
	cd driver;\
58
	make install;\
59
	cd ../lib;\
60
	make install;\
61
	cd ..
62
 
63
 
64
 
65
 
66