2004-06-26 12:18:08 +04:00
# *
# * Makefile
# *
# * Copyright (C) 2004 Intel Corporation. All rights reserved.
# *
# * This program is free software; you can redistribute it and/or
# * modify it under the terms of the GNU General Public
# * License v2.0 as published by the Free Software Foundation;
# *
# * This program is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# * General Public License for more details.
# *
# * You should have received a copy of the GNU General Public
# * License along with this program; if not, write to the
# * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# * Boston, MA 021110-1307, USA.
# *
# * Authors: Atul Sabharwal
# *
# *
2005-02-05 04:36:54 +03:00
2004-04-01 06:18:58 +04:00
TARGET = chassis_id
2004-10-06 09:20:12 +04:00
exec_prefix = ${ prefix }
sbindir = ${ exec_prefix } /sbin
INSTALL = /usr/bin/install -c
INSTALL_PROGRAM = ${ INSTALL }
INSTALL_DATA = ${ INSTALL } -m 644
2005-02-05 04:36:54 +03:00
all : chassis_id
2004-04-01 06:18:58 +04:00
2005-02-05 04:36:54 +03:00
i f n e q ( $( strip $ ( USE_KLIBC ) ) , t r u e )
2004-04-01 06:18:58 +04:00
chassis_id : chassis_id .c table .c
2005-02-05 04:36:54 +03:00
$( QUIET) $( CC) -o $( TARGET) $( CFLAGS) chassis_id.c table.c
2004-10-06 09:20:12 +04:00
install : all
$( INSTALL_PROGRAM) $( TARGET) $( DESTDIR) $( sbindir) /$( TARGET)
2005-02-05 04:36:54 +03:00
e l s e
chassis_id :
@echo
@echo "!!! chassis_id is incompatible with klibc !!!"
@echo
@exit 0
install : all
e n d i f
clean :
rm -rf core a.out $( TARGET)