diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-03 15:02:18 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-03 15:02:18 +0200 |
commit | b75c1ec41abb411423218895205395e8cb191be2 (patch) | |
tree | 62abd35bd88e543a400912d9db35a456da1c72bb /Makefile | |
parent | m + add more tools (diff) | |
download | contacts-b75c1ec41abb411423218895205395e8cb191be2.tar.gz contacts-b75c1ec41abb411423218895205395e8cb191be2.tar.bz2 contacts-b75c1ec41abb411423218895205395e8cb191be2.tar.xz |
Add photo utils
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -9,6 +9,7 @@ BIN =\ find-contact-by-name\ find-contact-by-organisation\ find-contact-by-pgpkey\ + find-contact-by-photo\ find-contact-by-site\ get-contact-emails\ get-contact-file\ @@ -18,6 +19,7 @@ BIN =\ get-contact-notes\ get-contact-organisations\ get-contact-pgpkeys\ + get-contact-photos\ get-contact-sites\ is-contact-ice\ list-contact-groups\ @@ -33,6 +35,7 @@ BIN =\ set-contact-notes\ set-contact-organisations\ set-contact-pgpkeys\ + set-contact-photos\ set-contact-sites HDR =\ @@ -73,6 +76,9 @@ find-contact-by-organisation: find-contact-by-organisation.o find-contact-by-pgpkey: find-contact-by-pgpkey.o $(CC) -o $@ $@.o $(LDFLAGS) +find-contact-by-photo: find-contact-by-photo.o + $(CC) -o $@ $@.o $(LDFLAGS) + find-contact-by-site: find-contact-by-site.o $(CC) -o $@ $@.o $(LDFLAGS) @@ -100,6 +106,9 @@ get-contact-organisations: get-contact-organisations.o get-contact-pgpkeys: get-contact-pgpkeys.o $(CC) -o $@ $@.o $(LDFLAGS) +get-contact-photos: get-contact-photos.o + $(CC) -o $@ $@.o $(LDFLAGS) + get-contact-sites: get-contact-sites.o $(CC) -o $@ $@.o $(LDFLAGS) @@ -145,6 +154,9 @@ set-contact-organisations: set-contact-organisations.o set-contact-pgpkeys: set-contact-pgpkeys.o $(CC) -o $@ $@.o $(LDFLAGS) +set-contact-photos: set-contact-photos.o + $(CC) -o $@ $@.o $(LDFLAGS) + set-contact-sites: set-contact-sites.o $(CC) -o $@ $@.o $(LDFLAGS) |