diff options
author | W. Kosior <koszko@koszko.org> | 2024-05-18 01:00:12 +0200 |
---|---|---|
committer | W. Kosior <koszko@koszko.org> | 2024-05-18 01:00:22 +0200 |
commit | 2b55cf92033ed02cabd545540241585e05f1fbb0 (patch) | |
tree | 9da86016dea518287552b56aaf457da970d4220f /ctftilde/Makefile.am | |
download | AGH-ctf-course-2024-2b55cf92033ed02cabd545540241585e05f1fbb0.tar.gz AGH-ctf-course-2024-2b55cf92033ed02cabd545540241585e05f1fbb0.zip |
Initial commit.
Diffstat (limited to 'ctftilde/Makefile.am')
-rw-r--r-- | ctftilde/Makefile.am | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ctftilde/Makefile.am b/ctftilde/Makefile.am new file mode 100644 index 0000000..99d7ddd --- /dev/null +++ b/ctftilde/Makefile.am @@ -0,0 +1,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 |