summaryrefslogtreecommitdiffstats
path: root/tools/Makefile.in
blob: 1f93b003c0d012495a99c4658f5a9704eaa9ca4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# HDF5 Library Makefile(.in)
#
# Copyright (C) 1997 National Center for Supercomputing Applications.
#                    All rights reserved.
#
# 
@COMMENCE@

# Add include directory to the C preprocessor flags.
CPPFLAGS=-I../src @CPPFLAGS@

# These are our main targets:
PROGS=h5debug h5import h5ls h5repart

# Source and object files for programs...
PROG_SRC=h5debug.c h5import.c h5ls.c h5repart.c
PROG_OBJ=$(PROG_SRC:.c=.o)

# How to build the programs...
h5debug: h5debug.o ../src/libhdf5.a
	$(CC) $(CFLAGS) -o $@ h5debug.o ../src/libhdf5.a $(LIBS)

h5import: h5import.o ../src/libhdf5.a
	$(CC) $(CFLAGS) -o $@ h5import.o ../src/libhdf5.a $(LIBS)

h5ls: h5ls.o ../src/libhdf5.a
	$(CC) $(CFLAGS) -o $@ h5ls.o ../src/libhdf5.a $(LIBS)

h5repart: h5repart.o ../src/libhdf5.a
	$(CC) $(CFLAGS) -o $@ h5repart.o ../src/libhdf5.a $(LIBS)

@CONCLUDE@