summaryrefslogtreecommitdiff
path: root/support/dktools/dk4mm.ctr
blob: 2014e69b3547ed498a8fc2fbef51a8de0f9d98c7 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
%%	options
copyright owner	=	Dirk Krause
copyright year	=	2017-xxxx
license			=	bsd

%%	header

/**	@file	dk4mm.h	Make mode: Check if rebuilding destination file
	is necessary.
*/

#ifndef	DK4CONF_H_INCLUDED
#include <dk4conf.h>
#endif

#ifndef	DK4TYPES_H_INCLUDED
#include <dk4types.h>
#endif


#ifdef	__cplusplus
extern "C" {
#endif

/**	Check whether or not it is necessary to rebuild a destination file.
	@param	dn	Destination file name.
	@param	sn	Source file name.
	@return	0 if the destination file is up to date, any non-0 value otherwise.
*/
int
dk4makemode_must_rebuild(const dkChar *dn, const dkChar *sn);

#ifdef	__cplusplus
}
#endif

/* vim: set ai sw=4 ts=4 : */
%%	module

#include "dk4mm.h"
#include "dk4statd.h"



int
dk4makemode_must_rebuild(const dkChar *dn, const dkChar *sn)
{
	dk4_stat_t	ds;
	dk4_stat_t	ss;
	int		 back	= 0;
	if ((NULL == dn) || (NULL == sn)) {
		goto finished;
	}
	if (0 != dk4stat(&ss, sn, NULL)) {
		/* Source file exists. */
		back = 1;
		if (0 != dk4stat(&ds, dn, NULL)) {
			/* Destination file exists. */
			if (ds.st_mtime > ss.st_mtime) {
				/* Destination file exists and is up to date. */
				back = 0;
			}
		}
	}
	else {
		/* Source file does not exist. */
	}

	finished:
	return back;
}


/* vim: set ai sw=4 ts=4 : */