11 lines
109 B
Makefile
11 lines
109 B
Makefile
all: build test
|
|
|
|
build:
|
|
cc -o text2ical text2ical.c
|
|
|
|
clean:
|
|
rm -f text2ical
|
|
|
|
test:
|
|
./text2ical < test.txt
|