caio.co/de/fuzzyclock


Expand README with introduction and usage by Caio 12 years ago (log)

Blob README

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
INTRODUCTION
============

fuzzyclock is a simple program written in C to output the current time
in a "fuzzy format", i.e.: instead of outputting 4:17, it will write
out "fifteen past four".

This program was written as an exercise for learning about the Check
testing framework and refreshing my (rather basic) autotools knowledge.


USAGE
=====

In the command line:

    fuzzyclock

You can also use the libfuzzyclock.a library in your software. Check
src/fuzzyclock.h for the exported functions.


BUILDING FROM GIT
=================

    autoreconf --install
    ./configure
    make


BUILDING FROM SOURCES
=====================

    ./configure
    make


RUNNING TESTS
=============

Note: Check (check.sourceforge.net) is required

    make check


INSTALLING
==========

    make install