diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-15 18:44:28 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-15 18:47:45 +0200 |
commit | 8c0607dacc71d9406f6cfb36e105a76828703cea (patch) | |
tree | d33f9198d5e5f523cc7992d9689c155b5a2a02d1 | |
download | addressbook-8c0607dacc71d9406f6cfb36e105a76828703cea.tar.gz addressbook-8c0607dacc71d9406f6cfb36e105a76828703cea.tar.bz2 addressbook-8c0607dacc71d9406f6cfb36e105a76828703cea.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | LICENSE | 15 | ||||
-rw-r--r-- | Makefile | 35 | ||||
-rw-r--r-- | README | 6 | ||||
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | addressbook.c | 22 | ||||
-rw-r--r-- | config.mk | 8 |
7 files changed, 95 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..187eac0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +*\#* +*~ +*.o +*.a +*.su +/addressbook @@ -0,0 +1,15 @@ +ISC License + +© 2021 Mattias Andrée <maandree@kth.se> + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d93205d --- /dev/null +++ b/Makefile @@ -0,0 +1,35 @@ +.POSIX: + +CONFIGFILE = config.mk +include $(CONFIGFILE) + + +OBJ =\ + addressbook.o + +HDR = + + +all: addressbook +$(OBJ): $(@:.o=.c) $(HDR) + +.c.o: + $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) + +addressbook: $(OBJ) + $(CC) -o $@ $(OBJ) $(LDFLAGS) + +install: addressbook + mkdir -p -- "$(DESTDIR)$(PREFIX)/bin/" + cp -- addressbook "$(DESTDIR)$(PREFIX)/bin/" + +uninstall: + -rm -f -- "$(DESTDIR)$(PREFIX)/bin/addressbook" + +clean: + -rm -f -- *.o *.a *.su $(OBJ) addressbook + +.SUFFIXES: +.SUFFIXES: .c .o + +.PHONY: all install uninstall clean @@ -0,0 +1,6 @@ +NAME + addressbook - A visual address book application + +DESCRIPTION + addressbook is a visual address book application for the + terminal using libcontacts. @@ -0,0 +1,3 @@ +Add cmdline options and operands for running specific parts of the application +Add man page +Add tests diff --git a/addressbook.c b/addressbook.c new file mode 100644 index 0000000..beef1c4 --- /dev/null +++ b/addressbook.c @@ -0,0 +1,22 @@ +/* See LICENSE file for copyright and license details. */ +#include <libcontacts.h> +#include <libsimple.h> +#include <libsimple-arg.h> +#include <libterminput.h> + + +USAGE(""); + + +int +main(int argc, char *argv[]) +{ + ARGBEGIN { + default: + usage(); + } ARGEND; + if (argc) + usage(); + + return 0; +} diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..6823d2b --- /dev/null +++ b/config.mk @@ -0,0 +1,8 @@ +PREFIX = /usr +MANPREFIX = $(PREFIX)/share/man + +CC = cc + +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 +CFLAGS = -std=c99 -Wall -Os +LDFLAGS = -lcontacts -lsimple -lterminput -s |