-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
59 lines (38 loc) · 1.13 KB
/
Makefile.am
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
.version:
git describe --tags > build-aux/.version
dist-hook:
git describe --tags > $(distdir)/.tarball-version
.PHONY: .version git-clean
# DRE 2024 - added to make it easier to git commit git pull by clearing untracked files:
git-clean:
rm -fr Doxyfile ar-lib autom4te.cache/output.* autom4te.cache/traces.* config.h config.h.in~ config.log config.status configure~ depcomp libtool src/.deps/ src/Makefile src/orig/ stamp-h1
#NOTE: Kept Makefile and added to the repository so you can use these Makefile recipes: DRE 2024
commit:
DATE=`date +%y%m%d%H%M%S`
git commit -m "${DATE}" -a
git push
.PHONY: commit
tag:
git tag @LIB_VER@
.PHONY: tag
DISTCLEANFILES = config.h.in~ \
ar-lib \
autom4te.cache/output.* \
autom4te.cache/requests \
autom4te.cache/traces.* \
depcomp
SUBDIRS = src
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST= \
.git/* \
.gitignore \
COPYING \
NEWS \
README \
build-aux/git-version-gen.sh \
VERSION \
build-aux/.gitignore \
m4/m4_ax_atlas.m4
# simple doxygen target for pre-existing Doxyfile.in template filled in
dox: Doxyfile.in
doxygen Doxyfile