calendar

BSD calendar reimplementation
git clone https://git.ce9e.org/calendar.git

commit
fe31188392fbb137b723f4433956ab5a7d024bb3
parent
8b21c1b6efa2db806f9d883135d444eba10ebee1
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2020-04-23 08:26
add Makefile

Diffstat

M .travis.yml 9 ++-------
A Makefile 9 +++++++++

2 files changed, 11 insertions, 7 deletions


diff --git a/.travis.yml b/.travis.yml

@@ -1,10 +1,5 @@
    1    -1 language: python
    2    -1 python:
    3    -1   - "3.4"
    4    -1 cache: pip
    5    -1 install:
    6    -1   - pip install tox
   -1     1 language: c
    7     2 script:
    8    -1   - tox
   -1     3   - make run_tests
    9     4 notifications:
   10     5   email: false

diff --git a/Makefile b/Makefile

@@ -0,0 +1,9 @@
   -1     1 all: calendar
   -1     2 
   -1     3 %: %.c
   -1     4 	gcc -Wall --std=c99 -pedantic -s $< -o $@
   -1     5 
   -1     6 run_tests: test
   -1     7 	./test
   -1     8 
   -1     9 .PHONY: all run_tests install