diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-05 22:25:05 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-05 22:25:05 +0200 |
commit | b843dec3932b5904af4a019f75d05ba8e0bdf191 (patch) | |
tree | 02868d4f6def9a26dae77dfbd0eaafdc3afe6250 /Makefile | |
parent | Add find-contact-by-address and get-contact-addresses (diff) | |
download | contacts-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-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) |