root/mpich2/trunk/src/mpi/romio/adio/ad_piofs/Makefile.in @ 4863

Revision 4863, 0.6 KB (checked in by robl, 5 months ago)

Mostly BillG: introduce quiet-make from MPICH2 to ROMIO

Line 
1CC          = @CC@
2AR          = @AR@
3LIBNAME     = @LIBNAME@
4srcdir      = @srcdir@
5
6INCLUDES    = -I@MPI_INCLUDE_DIR@ -I${srcdir}/../include -I../include -I../../include  -I${srcdir}/../../../../include -I../../../../include
7CFLAGS      = @CPPFLAGS@ @CFLAGS@ $(INCLUDES)
8
9@VPATH@
10
11AD_PIOFS_OBJECTS = ad_piofs_read.o \
12      ad_piofs_open.o ad_piofs_write.o \
13      ad_piofs_fcntl.o \
14      ad_piofs_hints.o \
15      ad_piofs.o
16
17
18default: $(LIBNAME)
19
20.c.o:
21        $(CC) $(CFLAGS) -c $<
22
23$(LIBNAME): $(AD_PIOFS_OBJECTS)
24        $(AR) $(LIBNAME) $(AD_PIOFS_OBJECTS)
25
26clean:
27        @rm -f *.o
Note: See TracBrowser for help on using the browser.