1# vim: set noet ts=8: 2# 3# Makefile.am for the shared archdep code 4 5 6AM_CPPFLAGS = \ 7 @ARCH_INCLUDES@ \ 8 $(extra_includes) \ 9 -I$(top_builddir)/src \ 10 -I$(top_srcdir)/src 11 12 13noinst_LIBRARIES = libarchdep.a 14 15libarchdep_a_SOURCES = \ 16 archdep_atexit.c \ 17 archdep_boot_path.c \ 18 archdep_cbmfont.c \ 19 archdep_create_user_config_dir.c \ 20 archdep_default_autostart_disk_image_file_name.c \ 21 archdep_default_fliplist_file_name.c \ 22 archdep_default_resource_file_name.c \ 23 archdep_default_rtc_file_name.c \ 24 archdep_default_sysfile_pathlist.c \ 25 archdep_expand_path.c \ 26 archdep_extra_title_text.c \ 27 archdep_file_is_blockdev.c \ 28 archdep_file_is_chardev.c \ 29 archdep_filename_parameter.c \ 30 archdep_fix_permissions.c \ 31 archdep_get_vice_datadir.c \ 32 archdep_get_vice_docsdir.c \ 33 archdep_home_path.c \ 34 archdep_join_paths.c \ 35 archdep_make_backup_filename.c \ 36 archdep_mkdir.c \ 37 archdep_open_default_log_file.c \ 38 archdep_path_is_relative.c \ 39 archdep_program_name.c \ 40 archdep_program_path.c \ 41 archdep_quote_parameter.c \ 42 archdep_rename.c \ 43 archdep_rmdir.c \ 44 archdep_sanitize_filename.c \ 45 archdep_startup_log_error.c \ 46 archdep_stat.c \ 47 archdep_tmpnam.c \ 48 archdep_user_config_path.c \ 49 archdep_xdg.c 50 51EXTRA_DIST = \ 52 archdep_defs.h \ 53 archdep_atexit.h \ 54 archdep_boot_path.h \ 55 archdep_cbmfont.h \ 56 archdep_create_user_config_dir.h \ 57 archdep_default_autostart_disk_image_file_name.h \ 58 archdep_default_fliplist_file_name.h \ 59 archdep_default_resource_file_name.h \ 60 archdep_default_rtc_file_name.h \ 61 archdep_default_sysfile_pathlist.h \ 62 archdep_expand_path.h \ 63 archdep_extra_title_text.h \ 64 archdep_file_is_blockdev.h \ 65 archdep_file_is_chardev.h \ 66 archdep_filename_parameter.h \ 67 archdep_fix_permissions.h \ 68 archdep_get_vice_datadir.h \ 69 archdep_get_vice_docsdir.h \ 70 archdep_home_path.h \ 71 archdep_join_paths.h \ 72 archdep_make_backup_filename.h \ 73 archdep_mkdir.h \ 74 archdep_open_default_log_file.h \ 75 archdep_path_is_relative.h \ 76 archdep_program_name.h \ 77 archdep_program_path.h \ 78 archdep_quote_parameter.h \ 79 archdep_rename.h \ 80 archdep_rmdir.h \ 81 archdep_sanitize_filename.h \ 82 archdep_startup_log_error.h \ 83 archdep_stat.h \ 84 archdep_tmpnam.h \ 85 archdep_user_config_path.h \ 86 archdep_xdg.h 87