-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile.am
More file actions
20 lines (14 loc) · 852 Bytes
/
Makefile.am
File metadata and controls
20 lines (14 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
AUTOMAKE_OPTIONS = foreign
bin_PROGRAMS = gnusocialshell
gnusocialshell_SOURCES = Main.c loadConfig.c lib/get_account_info.c lib/gnusocial.c gnusocialshell.c lib/send_status.c lib/favorite.c lib/search_by_id.c lib/delete_status_by_id.c lib/answer_status_by_id.c lib/read_timeline.c lib/retweet_by_id.c lib/get_user_info_by_id.c lib/print_users_array_info.c lib/verify_account.c lib/get_group_info.c lib/join_group.c lib/leave_group.c lib/list_groups.c lib/follow_user.c lib/unfollow_user.c lib/send_to_api.c help.c
CFLAGS = -Wall
LIBS =
LDADD =
LDADD += $(LIBCURL)
#if USE_READLINE
LDADD += $(LIBREADLINE)
#endif
initconfig:
test -d $(HOME)/.config/gnusocialshell || mkdir $(HOME)/.config/gnusocialshell
chmod -R 700 $(HOME)/.config/gnusocialshell
install --backup -v -Dm644 config $(DESTDIR)$(HOME)/.config/gnusocialshell/gnusocialshell.conf