chiark / gitweb /
1b641cafdad8fbdd8310e81894d9d0e95805d689
[elogind.git] / extras / chassis_id / Makefile
1 # * 
2 # * Makefile
3 # *
4 # * Copyright (C) 2004 Intel Corporation.  All rights reserved.
5 # *
6 # * This program is free software; you can redistribute it and/or
7 # * modify it under the terms of the GNU General Public
8 # * License v2.0 as published by the Free Software Foundation; 
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 GNU
13 # * General Public License for more details.
14 # *
15 # * You should have received a copy of the GNU General Public
16 # * License along with this program; if not, write to the
17 # * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 # * Boston, MA 021110-1307, USA.
19 # *
20 # * Authors: Atul Sabharwal
21 # *          
22 # *
23 CFLAGS = -g 
24 TARGET = chassis_id
25
26 all:    chassis_id  
27
28 chassis_id:     chassis_id.c table.c
29         gcc -o $(TARGET) $(CFLAGS) chassis_id.c table.c
30
31 clean:  
32         rm -rf core a.out $(TARGET)