diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-04 13:52:47 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-04 13:52:47 +0200 |
commit | 08ac19b665fceed3be23739075390a41b5dbfcfb (patch) | |
tree | 6776e45948cb8a15b4e89490cdc6a7c42d8cf2b7 /config.mk | |
parent | m + add list-birthdays and set-contact-birthday (diff) | |
download | contacts-08ac19b665fceed3be23739075390a41b5dbfcfb.tar.gz contacts-08ac19b665fceed3be23739075390a41b5dbfcfb.tar.bz2 contacts-08ac19b665fceed3be23739075390a41b5dbfcfb.tar.xz |
m + move common code from get-contact-birthday.c and list-birthdays.c to common-birthday.c
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | config.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,6 +3,6 @@ MANPREFIX = $(PREFIX)/share/man CC = cc -CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -I../libcontacts -CFLAGS = -std=c99 -Wall -O2 -LDFLAGS = -s -L../libcontacts -lcontacts -lsimple +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 +CFLAGS = -std=c99 -Wall -Os +LDFLAGS = -s -lcontacts -lsimple |