ceph/bench/mdtest/Makefile
sage d373cff222 *** empty log message ***
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@891 29311d96-e01e-0410-9327-a35deaab8ce9
2006-02-24 18:49:33 +00:00

35 lines
975 B
Makefile

#/*****************************************************************************\
#* *
#* Copyright (c) 2003, The Regents of the University of California *
#* See the file COPYRIGHT for a complete copyright notice and license. *
#* *
#*******************************************************************************
#*
#* CVS info:
#* $RCSfile$
#* $Revision$
#* $Date$
#* $Author$
#*
#* Purpose:
#* Make mdtest executable.
#*
#* make [mdtest] -- mdtest
#* make clean -- remove executable
#*
#\*****************************************************************************/
CC.AIX = mpcc_r -bmaxdata:0x80000000
CC.Linux = mpicc -Wall
# Requires GNU Make
OS=$(shell uname)
CC = $(CC.$(OS))
mdtest: mdtest.c
$(CC) -g -o mdtest mdtest.c -lm
clean:
rm -f mdtest mdtest.o