aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-05 22:25:05 +0200
committerMattias Andrée <maandree@kth.se>2021-04-05 22:25:05 +0200
commitb843dec3932b5904af4a019f75d05ba8e0bdf191 (patch)
tree02868d4f6def9a26dae77dfbd0eaafdc3afe6250 /Makefile
parentAdd find-contact-by-address and get-contact-addresses (diff)
downloadcontacts-b843dec3932b5904af4a019f75d05ba8e0bdf191.tar.gz
contacts-b843dec3932b5904af4a019f75d05ba8e0bdf191.tar.bz2
contacts-b843dec3932b5904af4a019f75d05ba8e0bdf191.tar.xz
m + add set-contact-addresses + use -n instead of -l for country
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3daf44f..2e3cb7f 100644
--- a/Makefile
+++ b/Makefile
@@ -43,6 +43,7 @@ BIN =\
list-organisation-contacts\
print-contact\
remove-contact\
+ set-contact-addresses\
set-contact-birthday\
set-contact-chats\
set-contact-emails\
@@ -188,8 +189,8 @@ print-contact: print-contact.o
remove-contact: remove-contact.o
$(CC) -o $@ $@.o $(LDFLAGS)
-set-contact-addresses: set-contact-addresses.o
- $(CC) -o $@ $@.o $(LDFLAGS)
+set-contact-addresses: set-contact-addresses.o common-address.o
+ $(CC) -o $@ $@.o common-address.o $(LDFLAGS)
set-contact-birthday: set-contact-birthday.o
$(CC) -o $@ $@.o $(LDFLAGS)