diff options
author | atul.sabharwal@intel.com <atul.sabharwal@intel.com> | 2004-03-31 18:18:58 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:35:13 -0700 |
commit | fa5acd760db98d8f7ec810e44e8d4527b115e43c (patch) | |
tree | 9a29686e9e5780e834d4b36dc626e03d80bdcc61 /extras/chassis_id/Makefile | |
parent | 52a8572366c15cc2676e3fad433f366ba3bc279c (diff) |
[PATCH] Add chassis_id program to extras directory
Diffstat (limited to 'extras/chassis_id/Makefile')
-rw-r--r-- | extras/chassis_id/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extras/chassis_id/Makefile b/extras/chassis_id/Makefile new file mode 100644 index 0000000000..d3152e863c --- /dev/null +++ b/extras/chassis_id/Makefile @@ -0,0 +1,26 @@ +# +# ** +# ** (C) 2003 Intel Corporation +# ** Atul Sabharwal <atul.sabharwal@intel.com> +# ** +# ** $Id: Makefile,v 1.3 2004/03/22 23:54:54 atul Exp $ +# ** +# ** Distributed under the terms of the GNU Public License, v2.0 or +# ** later. +# ** +# ** Many parts heavily based on test-skeleton.c, by Ulrich Drepper; +# ** with his permission, they have been re-licensed GPL, and his +# ** copyright still applies on them. +# ** +# */ +# +CFLAGS = -g +TARGET = chassis_id + +all: chassis_id + +chassis_id: chassis_id.c table.c + gcc -o $(TARGET) $(CFLAGS) chassis_id.c table.c + +clean: + rm -rf core a.out $(TARGET) |