|
Revision 4863, 0.6 KB
(checked in by robl, 5 months ago)
|
|
Mostly BillG: introduce quiet-make from MPICH2 to ROMIO
|
| Line | |
|---|
| 1 | CC = @CC@ |
|---|
| 2 | AR = @AR@ |
|---|
| 3 | LIBNAME = @LIBNAME@ |
|---|
| 4 | srcdir = @srcdir@ |
|---|
| 5 | |
|---|
| 6 | INCLUDES = -I@MPI_INCLUDE_DIR@ -I${srcdir}/../include -I../include -I../../include -I${srcdir}/../../../../include -I../../../../include |
|---|
| 7 | CFLAGS = @CPPFLAGS@ @CFLAGS@ $(INCLUDES) |
|---|
| 8 | |
|---|
| 9 | @VPATH@ |
|---|
| 10 | |
|---|
| 11 | AD_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 | |
|---|
| 18 | default: $(LIBNAME) |
|---|
| 19 | |
|---|
| 20 | .c.o: |
|---|
| 21 | $(CC) $(CFLAGS) -c $< |
|---|
| 22 | |
|---|
| 23 | $(LIBNAME): $(AD_PIOFS_OBJECTS) |
|---|
| 24 | $(AR) $(LIBNAME) $(AD_PIOFS_OBJECTS) |
|---|
| 25 | |
|---|
| 26 | clean: |
|---|
| 27 | @rm -f *.o |
|---|