2024-07-09 08:27:18 +02:00
|
|
|
CC = gcc
|
|
|
|
CFLAGS = -Wall -g -O0
|
|
|
|
|
2024-07-09 08:49:48 +02:00
|
|
|
test_parse_ics_file:
|
|
|
|
$(CC) $(CFLAGS) test_parse_ics_file.c ../src/parse_ics.c ../src/string_handling.c ../src/list_handling.c ../src/date_time_handling.c ../src/read_until_string.c ../src/read_until_nl.c -o test_parse_ics_file.out
|
|
|
|
./test_parse_ics_file.out
|
2024-07-09 08:27:18 +02:00
|
|
|
|
|
|
|
.PHONY:clean
|
|
|
|
clean:
|
|
|
|
-rm -vf *.out
|