blob: 99d7ddd997fae5a6e3347964ba69fa5a75f19e68 (
about) (
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
|
# SPDX-License-Identifier: CC0-1.0
#
# Copyright (C) 2023, 2024 Wojtek Kosior <koszko@koszko.org>
SUBDIRS = src/guile src/resources
dist_bin_SCRIPTS = scripts/ctftilde
.PHONY: guile-objects
guile-objects:
$(MAKE) --directory src/guile
EXTRA_DIST = \
guix-devshell \
bootstrap \
gen-config-scm
# LICENSES/CC0-1.0.txt \
# LICENSES/GPL-3.0-or-later.txt \
# .reuse/dep5 \
# .dir-locals.el \
# .gitignore \
# README.md.license
MAKEFILE_INS = \
Makefile.in \
src/guile/Makefile.in \
src/resources/Makefile.in
|