#
# Crackerjack Project
#
# Copyright (C) 2007, Hitachi, Ltd.
# Author(s): Yumiko Sugita <yumiko.sugita.yf@hitachi.com>,
#            Satoshi Fujiwara <sa-fuji@sdl.hitachi.co.jp>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#
# $Id:$
#

SYSCALL_NAME	:= $(shell basename $(shell dirname $(shell pwd)))
TARGET		:= test
CFLAGS		:= -Wall -O2
POSIX_FLAGS	:= -D_POSIX_C_SOURCE=$(shell getconf _POSIX_TIMERS)L
SRCS		:= $(wildcard *.c)
LIBS		:= -lrt
CC		:= gcc
RM		:= /bin/rm


$(TARGET): $(SRCS)
ifeq ($(POSIX_FLAGS), "undefined")
	@echo "system call '$(SYSCALL_NAME)' is not supported on this system"
else
	$(CC) $(CFLAGS) $(POSIX_FLAGS) -o $(TARGET) $(SRCS) $(LIBS)
endif

all:	$(TARGET)

clean:
	$(RM) -rf $(TARGET)
