chiark / gitweb /
d3152e863c0270e14057e69fde57972713836c46
[elogind.git] / extras / chassis_id / Makefile
1 #
2 #   **
3 #   ** (C) 2003 Intel Corporation
4 #   **          Atul Sabharwal <atul.sabharwal@intel.com>
5 #   **
6 #   ** $Id: Makefile,v 1.3 2004/03/22 23:54:54 atul Exp $
7 #   **
8 #   ** Distributed under the terms of the GNU Public License, v2.0 or
9 #   ** later.
10 #   **
11 #   ** Many parts heavily based on test-skeleton.c, by Ulrich Drepper;
12 #   ** with his permission, they have been re-licensed GPL, and his
13 #   ** copyright still applies on them. 
14 #   **
15 #   */
16 #
17 CFLAGS = -g 
18 TARGET = chassis_id
19
20 all:    chassis_id  
21
22 chassis_id:     chassis_id.c table.c
23         gcc -o $(TARGET) $(CFLAGS) chassis_id.c table.c
24
25 clean:  
26         rm -rf core a.out $(TARGET)