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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#############################################################################
## Setup for building programs ##
#############################################################################
include $(top_srcdir)/config/commence.am
DEFINES=-DNDEBUG -DHDF
#############################################################################
## Programs to build ##
#############################################################################
TEST_PROG = h4ex_VD_create_vdatas h4ex_VD_write_mixed_vdata \
h4ex_VD_write_mixed_vdata_struct h4ex_VD_write_to_vdata \
h4ex_VD_read_from_vdata h4ex_VD_read_mixed_vdata \
h4ex_VD_set_get_vdata_attr h4ex_VD_create_onefield_vdatas \
h4ex_VD_get_vdata_info h4ex_VD_locate_vdata h4ex_VG_create_vgroup \
h4ex_VG_add_sds_to_vgroup h4ex_VG_insert_vdatas_to_vgroup \
h4ex_VG_set_get_vgroup_attr h4ex_VG_vgroup_contents \
h4ex_VG_get_vgroup_info h4ex_GR_create_and_write_image \
h4ex_GR_modify_image h4ex_GR_set_attribute h4ex_GR_get_attribute \
h4ex_GR_write_palette h4ex_GR_image_info h4ex_GR_read_image \
h4ex_AN_create_annotation h4ex_AN_get_annotation_info h4ex_AN_read_annotation
# These are the C example files to be installed
INSTALL_FILES= h4ex_VD_create_vdatas.c h4ex_VD_write_mixed_vdata.c \
h4ex_VD_write_mixed_vdata_struct.c h4ex_VD_write_to_vdata.c \
h4ex_VD_read_from_vdata.c h4ex_VD_read_mixed_vdata.c \
h4ex_VD_set_get_vdata_attr.c h4ex_VD_create_onefield_vdatas.c \
h4ex_VD_get_vdata_info.c h4ex_VD_locate_vdata.c h4ex_VG_create_vgroup.c \
h4ex_VG_add_sds_to_vgroup.c h4ex_VG_insert_vdatas_to_vgroup.c \
h4ex_VG_set_get_vgroup_attr.c h4ex_VG_vgroup_contents.c \
h4ex_VG_get_vgroup_info.c h4ex_GR_create_and_write_image.c \
h4ex_GR_modify_image.c h4ex_GR_set_attribute.c h4ex_GR_get_attribute.c \
h4ex_GR_write_palette.c h4ex_GR_image_info.c h4ex_GR_read_image.c \
h4ex_AN_create_annotation.c h4ex_AN_get_annotation_info.c h4ex_AN_read_annotation.c
# Where to install example files
EXAMPLEDIR=$(prefix)/HDF4Examples/C
# How to build C programs using h4cc
$(EXTRA_PROG): $(H4CC)
$(H4CC) $(H4CCFLAGS) $(CFLAGS) -o $@ $(srcdir)/$@.c;
# List dependencies for each program. Normally, automake would take
# care of this for us, but if we tell automake about the programs it
# will try to build them with the normal C compiler, not h4cc.
# C Programs
h4ex_VD_read_from_vdata: $(srcdir)/h4ex_VD_read_from_vdata.c
h4ex_VD_read_mixed_vdata: $(srcdir)/h4ex_VD_read_mixed_vdata.c
h4ex_VD_set_get_vdata_attr: $(srcdir)/h4ex_VD_set_get_vdata_attr.c
h4ex_VD_write_mixed_vdata: $(srcdir)/h4ex_VD_write_mixed_vdata.c
h4ex_VD_write_mixed_vdata_struct: $(srcdir)/h4ex_VD_write_mixed_vdata_struct.c
h4ex_VD_write_to_vdata: $(srcdir)/h4ex_VD_write_to_vdata.c
h4ex_VD_create_onefield_vdatas: $(srcdir)/h4ex_VD_create_onefield_vdatas.c
h4ex_VD_create_vdatas: $(srcdir)/h4ex_VD_create_vdatas.c
h4ex_VD_get_vdata_info: $(srcdir)/h4ex_VD_get_vdata_info.c
h4ex_VD_locate_vdata: $(srcdir)/h4ex_VD_locate_vdata.c
h4ex_VG_insert_vdatas_to_vgroup: $(srcdir)/h4ex_VG_insert_vdatas_to_vgroup.c
h4ex_VG_set_get_vgroup_attr: $(srcdir)/h4ex_VG_set_get_vgroup_attr.c
h4ex_VG_vgroup_contents: $(srcdir)/h4ex_VG_vgroup_contents.c
h4ex_VG_add_sds_to_vgroup: $(srcdir)/h4ex_VG_add_sds_to_vgroup.c
h4ex_VG_create_vgroup: $(srcdir)/h4ex_VG_create_vgroup.c
h4ex_VG_get_vgroup_info: $(srcdir)/h4ex_VG_get_vgroup_info.c
h4ex_GR_create_and_write_image: $(srcdir)/h4ex_GR_create_and_write_image.c
h4ex_GR_get_attribute: $(srcdir)/h4ex_GR_get_attribute.c
h4ex_GR_image_info: $(srcdir)/h4ex_GR_image_info.c
h4ex_GR_modify_image: $(srcdir)/h4ex_GR_modify_image.c
h4ex_GR_read_image: $(srcdir)/h4ex_GR_read_image.c
h4ex_GR_read_palette: $(srcdir)/h4ex_GR_read_palette.c
h4ex_GR_set_attribute: $(srcdir)/h4ex_GR_set_attribute.c
h4ex_GR_write_palette: $(srcdir)/h4ex_GR_write_palette.c
h4ex_AN_create_annotation: $(srcdir)/h4ex_AN_create_annotation.c
h4ex_N_get_annotation_info: $(srcdir)/h4ex_AN_get_annotation_info.c
h4ex_AN_read_annotation: $(srcdir)/h4ex_AN_read_annotation.c
include $(top_srcdir)/config/examples.am
include $(top_srcdir)/config/conclude.am
DISTCLEANFILES = *.chkexe *.chklog
|