summaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
blob: d84fcb17db23233d62323e638e436d6aed26baeb (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# HDF5 Library Makefile(.in)
#
# Copyright (C) 1997 National Center for Supercomputing Applications.
#                    All rights reserved.
#
# 
@COMMENCE@

# Add `-I.' to the C preprocessor flags.
CPPFLAGS=-I. @CPPFLAGS@

# These are our main targets:
LIB=libhdf5.a
PROGS=debug

# Source and object files for the library (lexicographically)...
PARALLEL_SRC=H5Fmpio.c

LIB_SRC=H5.c H5A.c H5AC.c H5B.c H5C.c H5D.c H5E.c H5F.c H5Farray.c H5Fcore.c  \
	H5Ffamily.c H5Fistore.c H5Flow.c H5Fsec2.c H5Fsplit.c H5Fstdio.c      \
        H5G.c H5Gent.c H5Gnode.c H5Gstab.c H5H.c H5M.c H5MF.c H5MM.c H5O.c    \
        H5Ocont.c H5Odtype.c H5Oefl.c H5Olayout.c H5Oname.c H5Onull.c         \
        H5Osdspace.c H5Ostab.c H5S.c H5Ssimp.c H5T.c H5Tconv.c H5Tinit.c      \
        H5V.c @PARALLEL_SRC@

LIB_OBJ=$(LIB_SRC:.c=.o)

# Temporary files
MOSTLYCLEAN=H5detect.o H5detect H5Tinit.o H5Tinit.c

# Source and object files for programs...
PROG_SRC=debug.c
PROG_OBJ=$(PROG_SRC:.c=.o)

# Public header files (to be installed)...
PUB_HDR=H5public.h H5Apublic.h H5ACpublic.h H5Bpublic.h H5Cpublic.h	      \
        H5Dpublic.h H5Epublic.h H5Fpublic.h H5Gpublic.h H5Hpublic.h	      \
        H5Mpublic.h H5MFpublic.h H5MMpublic.h H5Opublic.h H5Spublic.h	      \
	H5Tpublic.h H5config.h hdf5.h

# Other header files (not to be installed)...
PRIVATE_HDR=H5private.h H5Aprivate.h H5ACprivate.h H5Bprivate.h		      \
	H5Cprivate.h H5Dprivate.h H5Eprivate.h H5Fprivate.h H5Gprivate.h      \
	H5Gpkg.h H5Hprivate.h H5Mprivate.h H5MFprivate.h H5MMprivate.h	      \
	H5Oprivate.h H5Sprivate.h H5Tprivate.h H5Tpkg.h H5Vprivate.h

# Number format detection
H5Tinit.c: H5detect
	$(RUNTEST) ./H5detect >H5Tinit.c

H5detect: H5detect.o
	$(CC) $(CFLAGS) -o $@ H5detect.o $(LIBS)	# no $(LIB) which is being made

# How to build the programs...
debug: debug.o $(LIB)
	$(CC) $(CFLAGS) -o $@ debug.o $(LIB) $(LIBS)

@CONCLUDE@