-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
60 lines (51 loc) · 1.9 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
58
59
60
#
# Copyright (c) 2019 LAAS/CNRS
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice and this list of conditions.
# 2. Redistributions in binary form must reproduce the above copyright
# notice and this list of conditions in the documentation and/or
# other materials provided with the distribution.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
# IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
# Martin Jacquet - September 2022
#
# Modified by: Selvakumar H S - August 2023
#
ACLOCAL_AMFLAGS= -I autoconf
# IDL source files
idldir= $(datadir)/idl/realsense
nobase_dist_idl_DATA= realsense.gen
pkgconfigdir= $(libdir)/pkgconfig
pkgconfig_DATA=
pkgconfig_DATA+= realsense-genom3.pc
# we don't want generated templates in the distribution
#
DIST_SUBDIRS= codels
SUBDIRS= ${DIST_SUBDIRS}
# recursion into templates directories configured with --with-templates
#
SUBDIRS+= ${AG_TEMPLATES_SUBDIRS}
distclean-local:
-rm -rf ${AG_TEMPLATES_SUBDIRS}
# a rule to invoke skeleton merge mode
#
merge: merge-interactive
merge-%:
cd ${top_srcdir} && ${GENOM3} \
skeleton -l 'c++' -m $* realsense.gen
# documentation
dist_doc_DATA= README.html README.adoc
%.html: %.adoc
$(ASCIIDOCTOR) $(ASCIIDOCTOR_ARGS) -b html5 -o $@ $<