~m-grant-prg/vm-container-utils/bionic

« back to all changes in this revision

Viewing changes to src/conf/etc/lxcu/ubuntu/jammy/dev/Makefile.am

  • Committer: Mark Grant
  • Date: 2022-10-16 14:46:16 UTC
  • mfrom: (5.1.19 bionic-trunk)
  • Revision ID: m.grant.prg@gmail.com-20221016144616-y7q6fu2a7cekczk5
Merge from bionic-trunk.

* New upstream release.
* Update Copyright for 2022.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#########################################################################
 
2
#                                                                       #
 
3
# Script ID: src/conf/etc/lxcu/ubuntu/jammy/dev/Makefile.am             #
 
4
# Author: Copyright (C) 2022  Mark Grant                                #
 
5
#                                                                       #
 
6
# Released under the GPLv3 only.                                        #
 
7
# SPDX-License-Identifier: GPL-3.0-only                                 #
 
8
#                                                                       #
 
9
# Purpose:                                                              #
 
10
# AutoMake script file to build the lxcu configuration files.           #
 
11
#                                                                       #
 
12
#########################################################################
 
13
 
 
14
#########################################################################
 
15
#                                                                       #
 
16
# Changelog                                                             #
 
17
#                                                                       #
 
18
# Date          Author  Version Description                             #
 
19
#                                                                       #
 
20
# 03/05/2022    MG      1.0.1   Initial release.                        #
 
21
#                                                                       #
 
22
#########################################################################
 
23
 
 
24
 
 
25
confdir = $(sysconfdir)/lxcu/ubuntu/jammy/dev
 
26
 
 
27
cache.list install.list: Makefile
 
28
        mkdir -p $(@D)
 
29
        rm -f $@ $@.tmp
 
30
        test -f ./$@.in || srcdir=$(srcdir)/; \
 
31
        $(edit) $${srcdir}$(@F).in > $@.tmp
 
32
        mv $@.tmp $@
 
33
cache.list: $(srcdir)/cache.list.in
 
34
install.list: $(srcdir)/install.list.in
 
35
 
 
36
conf_DATA = cache.list install.list
 
37
 
 
38
EXTRA_DIST = $(srcdir)/cache.list.in $(srcdir)/install.list.in
 
39
 
 
40
CLEANFILES = *.tmp cache.list install.list
 
41