aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-04 03:31:26 +0200
committerMattias Andrée <maandree@kth.se>2021-04-04 03:31:26 +0200
commitefa7ac2eef94614ed6e8481b57b00cf25239581b (patch)
tree94efbb77a19adf478522014f314edf5ff51a8eca /Makefile
parentm + add chat utils (diff)
downloadcontacts-efa7ac2eef94614ed6e8481b57b00cf25239581b.tar.gz
contacts-efa7ac2eef94614ed6e8481b57b00cf25239581b.tar.bz2
contacts-efa7ac2eef94614ed6e8481b57b00cf25239581b.tar.xz
misc
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c821140..5ea2d5b 100644
--- a/Makefile
+++ b/Makefile
@@ -5,13 +5,16 @@ include $(CONFIGFILE)
BIN =\
+ add-contact\
find-contact-by-chat\
find-contact-by-email\
find-contact-by-name\
+ find-contact-by-number\
find-contact-by-organisation\
find-contact-by-pgpkey\
find-contact-by-photo\
find-contact-by-site\
+ get-contact-birthday\
get-contact-chats\
get-contact-emails\
get-contact-file\
@@ -19,6 +22,7 @@ BIN =\
get-contact-groups\
get-contact-name\
get-contact-notes\
+ get-contact-numbers\
get-contact-organisations\
get-contact-pgpkeys\
get-contact-photos\
@@ -30,6 +34,8 @@ BIN =\
list-contacts\
list-group-contacts\
list-organisation-contacts\
+ print-contact\
+ remove-contact\
set-contact-chats\
set-contact-emails\
set-contact-gender\
@@ -37,6 +43,7 @@ BIN =\
set-contact-ice\
set-contact-name\
set-contact-notes\
+ set-contact-numbers\
set-contact-organisations\
set-contact-pgpkeys\
set-contact-photos\
@@ -68,6 +75,9 @@ contacts.c: contacts.c.in Makefile
printf '\n\n' >> $@
cat contacts.c.in >> $@
+add-contact: add-contact.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
find-contact-by-chat: find-contact-by-chat.o
$(CC) -o $@ $@.o $(LDFLAGS)
@@ -77,6 +87,9 @@ find-contact-by-email: find-contact-by-email.o
find-contact-by-name: find-contact-by-name.o
$(CC) -o $@ $@.o $(LDFLAGS)
+find-contact-by-number: find-contact-by-number.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
find-contact-by-organisation: find-contact-by-organisation.o
$(CC) -o $@ $@.o $(LDFLAGS)
@@ -89,6 +102,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-birthday: get-contact-birthday.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
get-contact-chats: get-contact-chats.o
$(CC) -o $@ $@.o $(LDFLAGS)
@@ -110,6 +126,9 @@ get-contact-name: get-contact-name.o
get-contact-notes: get-contact-notes.o
$(CC) -o $@ $@.o $(LDFLAGS)
+get-contact-numbers: get-contact-numbers.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
get-contact-organisations: get-contact-organisations.o
$(CC) -o $@ $@.o $(LDFLAGS)
@@ -125,6 +144,9 @@ get-contact-sites: get-contact-sites.o
is-contact-ice: is-contact-ice.o
$(CC) -o $@ $@.o $(LDFLAGS)
+list-birthdays: list-birthdays.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
list-chat-contacts: list-chat-contacts.o
$(CC) -o $@ $@.o $(LDFLAGS)
@@ -143,6 +165,15 @@ list-group-contacts: list-group-contacts.o
list-organisation-contacts: list-organisation-contacts.o
$(CC) -o $@ $@.o $(LDFLAGS)
+print-contact: print-contact.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
+remove-contact: remove-contact.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
+set-contact-birthday: set-contact-birthday.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
set-contact-chats: set-contact-chats.o
$(CC) -o $@ $@.o $(LDFLAGS)
@@ -164,6 +195,9 @@ set-contact-name: set-contact-name.o
set-contact-notes: set-contact-notes.o
$(CC) -o $@ $@.o $(LDFLAGS)
+set-contact-numbers: set-contact-numbers.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
set-contact-organisations: set-contact-organisations.o
$(CC) -o $@ $@.o $(LDFLAGS)