diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-03 19:26:35 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-03 19:26:35 +0200 |
commit | 2c6143d373c86f6b5c31e07d97447063766cd4eb (patch) | |
tree | 3f92f07cb737dad6f0f6f02bd191741fdd57edad /Makefile | |
parent | Add photo utils (diff) | |
download | contacts-2c6143d373c86f6b5c31e07d97447063766cd4eb.tar.gz contacts-2c6143d373c86f6b5c31e07d97447063766cd4eb.tar.bz2 contacts-2c6143d373c86f6b5c31e07d97447063766cd4eb.tar.xz |
m + add chat utils
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -5,12 +5,14 @@ include $(CONFIGFILE) BIN =\ + find-contact-by-chat\ find-contact-by-email\ find-contact-by-name\ find-contact-by-organisation\ find-contact-by-pgpkey\ find-contact-by-photo\ find-contact-by-site\ + get-contact-chats\ get-contact-emails\ get-contact-file\ get-contact-gender\ @@ -22,11 +24,13 @@ BIN =\ get-contact-photos\ get-contact-sites\ is-contact-ice\ + list-chat-contacts\ list-contact-groups\ list-contact-organisations\ list-contacts\ list-group-contacts\ list-organisation-contacts\ + set-contact-chats\ set-contact-emails\ set-contact-gender\ set-contact-groups\ @@ -64,6 +68,9 @@ contacts.c: contacts.c.in Makefile printf '\n\n' >> $@ cat contacts.c.in >> $@ +find-contact-by-chat: find-contact-by-chat.o + $(CC) -o $@ $@.o $(LDFLAGS) + find-contact-by-email: find-contact-by-email.o $(CC) -o $@ $@.o $(LDFLAGS) @@ -82,6 +89,9 @@ find-contact-by-photo: find-contact-by-photo.o find-contact-by-site: find-contact-by-site.o $(CC) -o $@ $@.o $(LDFLAGS) +get-contact-chats: get-contact-chats.o + $(CC) -o $@ $@.o $(LDFLAGS) + get-contact-emails: get-contact-emails.o $(CC) -o $@ $@.o $(LDFLAGS) @@ -115,6 +125,9 @@ get-contact-sites: get-contact-sites.o is-contact-ice: is-contact-ice.o $(CC) -o $@ $@.o $(LDFLAGS) +list-chat-contacts: list-chat-contacts.o + $(CC) -o $@ $@.o $(LDFLAGS) + list-contact-groups: list-contact-groups.o $(CC) -o $@ $@.o $(LDFLAGS) @@ -130,6 +143,9 @@ list-group-contacts: list-group-contacts.o list-organisation-contacts: list-organisation-contacts.o $(CC) -o $@ $@.o $(LDFLAGS) +set-contact-chats: set-contact-chats.o + $(CC) -o $@ $@.o $(LDFLAGS) + set-contact-emails: set-contact-emails.o $(CC) -o $@ $@.o $(LDFLAGS) |