summaryrefslogtreecommitdiffstats
path: root/Makefile.dist
blob: 0b96c815fb0e91e35432461fd514101ff3ce4044 (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
# Top-level distributed Makefile 			       -*- makefile -*-

# This Makefile is a stub (copied from Makefile.dist) which will run
# configure and then invoke the same target in the new Makefile created
# by configure.

# Uncomment this variable if your make(1) doesn't set it automatically.
#
#MAKE=make


SHELL=/bin/sh

all lib progs check test _test install uninstall dep depend: _config
	$(MAKE) $@

clean mostlyclean distclean maintainer-clean TAGS: _config
	$(MAKE) $@

_config:
	sh configure

.PHONY: all lib progs test install uninstall dep depend clean mostlyclean     \
	distclean maintainer-clean _config
* Quiets const warnings (#1831)Dana Robinson2022-06-291-1/+1 * Fix some const cast and stack/static object size warnings (#1700)jhendersonHDF2022-05-011-5/+4 * Removes the STATIC flavor of FUNC_ENTER macros (#1622)Dana Robinson2022-04-081-84/+84 * Use appropriate printf format specifiers for haddr_t and hsize_t types direct...jhendersonHDF2022-01-111-28/+22 * Fix usage of several HDfprintf format specifiers after HDfprintf removal (#1324)jhendersonHDF2022-01-041-28/+35 * Fixed Spelling Errors (#1166)Scot Breitenfeld2021-12-071-10/+10 * Stop lying about H5S_t const-ness (#1209)Dana Robinson2021-11-201-30/+30 * Simplify function enter macros for performance benefits (#1024)David Young2021-11-081-6/+3 * Fixes parallel issues from recent C99 changes (#809)Dana Robinson2021-06-301-9/+9 * Fixed all -Wincompatible-pointer-types-discards-qualifiers warnings (#341)Sean McBride2021-02-221-2/+2 * Fixed uninitialized warnings (#360)Sean McBride2021-02-191-8/+8 * Update license url (#332)Larry Knox2021-02-171-1/+1 * develop revert source to clang-format version 11 (#293)Allen Byrne2021-01-291-3/+3 * Replace H5E_ATOM major error category with H5E_ID (#121)Dana Robinson2020-11-301-4/+4 * Enhance API tracing (#120)Quincey Koziol2020-11-26