Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

autotools: add CMake sources to dist #350

Merged
merged 1 commit into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ endif
DEFS = -DDEBUG_PAM -DPAM_DEBUG @DEFS@

EXTRA_DIST = export.sym
EXTRA_DIST += export.gnu export.llvm
EXTRA_DIST += CMakeLists.txt cmake/FindPAM.cmake

# Release

Expand Down
1 change: 1 addition & 0 deletions fuzz/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ fuzz_auth_LDADD = -lpam $(LIBFIDO2_LIBS) $(LIBCRYPTO_LIBS) ../pam_u2f.la
noinst_PROGRAMS = fuzz_format_parsers fuzz_auth

EXTRA_DIST = coverage.sh make_seed.py export.sym
EXTRA_DIST += export.gnu CMakeLists.txt
1 change: 1 addition & 0 deletions man/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dist_man1_MANS = pamu2fcfg.1
dist_man8_MANS = pam_u2f.8
MAINTAINERCLEANFILES = $(MANS)
EXTRA_DIST = $(MANS:=.txt)
EXTRA_DIST += CMakeLists.txt

SUFFIXES = .1.txt .1 .8.txt .8

Expand Down
2 changes: 2 additions & 0 deletions pamu2fcfg/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ pamu2fcfg_SOURCES += readpassphrase.c _readpassphrase.h
pamu2fcfg_SOURCES += strlcpy.c openbsd-compat.h
pamu2fcfg_SOURCES += ../util.c ../b64.c ../explicit_bzero.c
pamu2fcfg_LDADD = $(LIBFIDO2_LIBS) $(LIBCRYPTO_LIBS)

EXTRA_DIST = CMakeLists.txt
2 changes: 2 additions & 0 deletions tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ cfg_SOURCES = ./cfg.c ../cfg.c ../debug.c
cfg_CFLAGS = -DPAM_U2F_TESTING -DSCONFDIR='"@SCONFDIR@"' $(AM_CFLAGS)

TESTS = $(check_PROGRAMS)

EXTRA_DIST = CMakeLists.txt
Loading