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 | # This program is free software; you can redistribute it and/or modify |
||
| 5 | # it under the terms of the GNU General Public License as published by |
||
| 6 | # the Free Software Foundation; either version 2 of the License, or |
||
| 7 | # (at your option) any later version. |
||
| 8 | # |
||
| 9 | # This program is distributed in the hope that it will be useful, |
||
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 12 | # GNU General Public License for more details. |
||
| 13 | # |
||
| 14 | # You should have received a copy of the GNU General Public License |
||
| 15 | # along with this program; if not, write to the Free Software |
||
| 16 | # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
||
| 17 | # |
||
| 18 | # Maintainer(s): Klaus Hitschler (klaus.hitschler@gmx.de) |
||
| 19 | #**************************************************************************** |
||
| 20 | |||
| 21 | #**************************************************************************** |
||
| 22 | # |
||
| 23 | # Makefile - makefile for ARW Elektronik PCIVME interfaces test program |
||
| 24 | # |
||
| 25 | # $Log: Makefile,v $ |
||
| 26 | # Revision 1.5 2004/08/13 19:23:55 klaus |
||
| 27 | # conversion to kernel-version 2.6, released version 3.0 |
||
| 28 | # |
||
| 29 | # Revision 1.4 2002/10/20 18:08:21 klaus |
||
| 30 | # don't know what has been changed? |
||
| 31 | # |
||
| 32 | # Revision 1.3 2002/10/17 19:05:03 klaus |
||
| 33 | # VME access is working through test to lib to driver |
||
| 34 | # |
||
| 35 | # Revision 1.2 2002/10/12 22:12:19 klaus |
||
| 36 | # simple change |
||
| 37 | # |
||
| 38 | # Revision 1.1.1.1 2002/10/09 19:36:29 klaus |
||
| 39 | # initial import |
||
| 40 | # |
||
| 41 | # |
||
| 42 | #**************************************************************************** |
||
| 43 | |||
| 44 | FILES = simpleTest |
||
| 45 | |||
| 46 | INC = -I /usr/include -I . -I ../lib |
||
| 47 | CFLAGS = -O2 -fomit-frame-pointer -Wall $(INC) -g |
||
| 48 | LIBS = -lpcivme |
||
| 49 | |||
| 50 | all: simpleTest |
||
| 51 | |||
| 52 | simpleTest: simpleTest.c |
||
| 53 | $(CC) $(CFLAGS) simpleTest.c $(LIBS) -o simpleTest |
||
| 54 | |||
| 55 | clean: |
||
| 56 | rm -f $(FILES) *~ core |
||
| 57 | |||
| 58 |