/
githubmirror
/
dosfstools
Обзор
Документация
Войти
/
githubmirror
/
dosfstools
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.2
src/Makefile.am
69 строк
3 KB
Pali Rohár
Add missing files into distribution tarball
31 янв 2021, 15:26
31 янв 2021, 15:26
eb9111e
Код
Авторство
О чём код?
# dosfstools src/Makefile.am # Copyright (C) 2015 Andreas Bombe <aeb@debian.org> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. AM_CFLAGS = -Wall -Wextra -Wno-sign-compare -Wno-missing-field-initializers \ -Wmissing-prototypes -Wstrict-prototypes -Wwrite-strings sbin_PROGRAMS = fsck.fat mkfs.fat fatlabel noinst_PROGRAMS = testdevinfo EXTRA_DIST = blkdev/README charconv_common_sources = charconv.c charconv.h charconv_common_ldadd = $(LIBICONV) fscklabel_common_sources = boot.c boot.h common.c common.h \ fat.c fat.h io.c io.h msdos_fs.h \ $(charconv_common_sources) \ fsck.fat.h endian_compat.h fsck_fat_SOURCES = check.c check.h file.c file.h fsck.fat.c \ lfn.c lfn.h \ $(fscklabel_common_sources) fsck_fat_LDADD = $(charconv_common_ldadd) fatlabel_SOURCES = fatlabel.c $(fscklabel_common_sources) fatlabel_LDADD = $(charconv_common_ldadd) devinfo_common_sources = device_info.c device_info.h \ blkdev/blkdev.c blkdev/blkdev.h \ blkdev/linux_version.c blkdev/linux_version.h mkfs_fat_SOURCES = mkfs.fat.c msdos_fs.h common.c common.h endian_compat.h \ $(charconv_common_sources) $(devinfo_common_sources) mkfs_fat_CPPFLAGS = -I$(srcdir)/blkdev mkfs_fat_CFLAGS = $(AM_CFLAGS) mkfs_fat_LDADD = $(charconv_common_ldadd) testdevinfo_SOURCES = testdevinfo.c $(devinfo_common_sources) testdevinfo_CPPFLAGS = -I$(srcdir)/blkdev testdevinfo_CFLAGS = $(AM_CFLAGS) if COMPAT_SYMLINKS install-exec-hook: cd $(DESTDIR)$(sbindir) && $(LN_S) -f fatlabel dosfslabel cd $(DESTDIR)$(sbindir) && $(LN_S) -f fsck.fat dosfsck cd $(DESTDIR)$(sbindir) && $(LN_S) -f fsck.fat fsck.msdos cd $(DESTDIR)$(sbindir) && $(LN_S) -f fsck.fat fsck.vfat cd $(DESTDIR)$(sbindir) && $(LN_S) -f mkfs.fat mkdosfs cd $(DESTDIR)$(sbindir) && $(LN_S) -f mkfs.fat mkfs.msdos cd $(DESTDIR)$(sbindir) && $(LN_S) -f mkfs.fat mkfs.vfat uninstall-hook: $(RM) $(DESTDIR)$(sbindir)/dosfslabel $(RM) $(DESTDIR)$(sbindir)/dosfsck $(RM) $(DESTDIR)$(sbindir)/fsck.msdos $(RM) $(DESTDIR)$(sbindir)/fsck.vfat $(RM) $(DESTDIR)$(sbindir)/mkdosfs $(RM) $(DESTDIR)$(sbindir)/mkfs.msdos $(RM) $(DESTDIR)$(sbindir)/mkfs.vfat endif