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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
bin_PROGRAMS = npconfig
INCLUDES=-I$(top_srcdir)/inc -I$(top_srcdir) $(GTK_CFLAGS)
npconfig_SOURCES = npconfig.C exit_button_callback.C NP_Config.C ~NP_Config.C \
run.C email_entry_callback.C editor_entry_callback.C save_button_callback.C \
reload_button_callback.C init_general.C init_servers.C adjustment_callback.C \
save_exit_button_callback.C add_button_callback.C remove_button_callback.C \
user_entries_callback.C init_newsgroups.C pass_entries_callback.C \
check_buttons_callback.C do_dialog.C update_server_frames.C \
dialog_add_callback.C dialog_remove_callback.C create_server_frame.C \
create_server_list.C address_buttons_callback.C edit_button_callback.C \
create_server_button.C update_server_buttons.C lists_ok_callback.C \
lists_cancel_callback.C do_lists.C load_clist.C clist_add_callback.C \
clist_remove_callback.C lists_update_callback.C server_callback.C \
show_message.C update_message.C message_callback.C search_entry_callback.C \
search_button_callback.C sort_button_callback.C new_folder_callback.C \
replace_folder_callback.C signal_handler.C remove_folder_callback.C \
folder_clist_callback.C init_folders.C SIGALRM_handler.C SIGTERM_handler.C \
busy_cursor_and_block_signals.C sort_folders_callback.C create_folder_frame.C \
remove_files.C SIGUSR2_handler.C stop_button_callback.C save_size.C set_size.C \
browser_entry_callback.C refresh_active_callback.C npconfig.h
EXTRA_OBJECTS = npgeneral/NP_General.o npgeneral/~NP_General.o \
npgeneral/set_email.o npgeneral/set_editor.o npgeneral/set_expiry.o \
npgeneral/get_email.o npgeneral/get_editor.o npgeneral/get_expiry.o \
npgeneral/save.o npgeneral/load.o npgeneral/malformed_message.o \
npgeneral/get_browser.o npgeneral/set_browser.o \
npauthentication/NP_Authentication.o npauthentication/~NP_Authentication.o \
npauthentication/save_error.o npauthentication/add.o \
npauthentication/remove.o npauthentication/get_user.o \
npauthentication/get_pass.o npauthentication/clear.o npauthentication/save.o \
npauthentication/load.o npauthentication/replace_user.o \
npauthentication/replace_pass.o \
npserver/NP_Server.o npserver/~NP_Server.o npserver/do_connect.o \
npserver/disconnect.o npserver/getlist.o npserver/get_string.o \
npserver/put_string.o npserver/write_timestamp.o npserver/get_list.o \
npserver/get_newgroups.o npserver/sort_server.o npserver/sort_list.o \
npserver/np_fgets.o npserver/np_fputs.o npserver/np_fputs_error.o \
npserver/open_server.o npserver/sort_file.o npserver/wait_for_activity.o \
npserver/get_address.o npserver/np_read.o \
npsubscription/NP_Subscription.o npsubscription/~NP_Subscription.o \
npsubscription/add_server.o npsubscription/operator[].o \
npsubscription/add_group.o npsubscription/remove_server.o \
npsubscription/remove_group.o npsubscription/save.o npsubscription/load.o \
npsubscription/clear.o npsubscription/get_user.o npsubscription/get_pass.o \
npsubscription/get_total.o npsubscription/replace_user.o \
npsubscription/replace_pass.o npsubscription/clear_server.o \
npsubscription/get_total_groups.o npsubscription/get_group.o \
npsubscription/get_article_no.o npsubscription/sort_groups.o \
npfolders/NP_Folders.o npfolders/~NP_Folders.o npfolders/add.o \
npfolders/remove.o npfolders/sort.o npfolders/alter.o npfolders/clear.o \
npfolders/get_total.o npfolders/save.o npfolders/load.o npfolders/get_items.o
# move .C files to _SOURCES when really needed!
EXTRA_DIST = init_addresses.C init_inboxes.C remove_group_files.C
SUBDIRS = npgeneral npauthentication npserver npsubscription npfolders
npconfig_LDADD = $(EXTRA_OBJECTS) $(top_srcdir)/lib/libnp.a $(GTK_LIBS)
|