Blame


1 8fbe3fd5 2024-02-17 op check_PROGRAMS = gmparser gmiparser iritest evtest
2 23a912c2 2022-01-20 op
3 23a912c2 2022-01-20 op gmparser_SOURCES = gmparser.c \
4 6ab857d5 2024-01-23 op $(top_srcdir)/compat.h \
5 7c7d258a 2024-01-23 op $(top_srcdir)/hist.c \
6 7c7d258a 2024-01-23 op $(top_srcdir)/hist.h \
7 72773809 2024-02-22 op $(top_srcdir)/iri.c \
8 72773809 2024-02-22 op $(top_srcdir)/iri.h \
9 1ac119fb 2024-01-23 op $(top_srcdir)/parser.c \
10 6ab857d5 2024-01-23 op $(top_srcdir)/parser.h \
11 75357c61 2024-02-22 op $(top_srcdir)/parser_gophermap.c
12 23a912c2 2022-01-20 op
13 59b2344e 2022-05-19 op gmiparser_SOURCES = gmiparser.c \
14 6ab857d5 2024-01-23 op $(top_srcdir)/compat.h \
15 7c7d258a 2024-01-23 op $(top_srcdir)/hist.c \
16 7c7d258a 2024-01-23 op $(top_srcdir)/hist.h \
17 1ac119fb 2024-01-23 op $(top_srcdir)/parser.c \
18 6ab857d5 2024-01-23 op $(top_srcdir)/parser.h \
19 75357c61 2024-02-22 op $(top_srcdir)/parser_gemtext.c
20 59b2344e 2022-05-19 op
21 92e07b23 2022-12-25 op iritest_SOURCES = iritest.c \
22 92e07b23 2022-12-25 op $(top_srcdir)/iri.c \
23 92e07b23 2022-12-25 op $(top_srcdir)/iri.h
24 92e07b23 2022-12-25 op
25 8fbe3fd5 2024-02-17 op evtest_SOURCES = evtest.c \
26 8fbe3fd5 2024-02-17 op $(top_srcdir)/ev.c \
27 8fbe3fd5 2024-02-17 op $(top_srcdir)/ev.h
28 8fbe3fd5 2024-02-17 op
29 6ab857d5 2024-01-23 op gmparser_CFLAGS = -I$(top_srcdir)
30 6ab857d5 2024-01-23 op gmiparser_CFLAGS = -I$(top_srcdir)
31 6ab857d5 2024-01-23 op iritest_CFLAGS = -I$(top_srcdir)
32 8fbe3fd5 2024-02-17 op evtest_CFLAGS = -I$(top_srcdir)
33 6241aa26 2022-01-20 op
34 bdb2d1b1 2024-02-22 op LDADD = $(LIBOBJS)
35 bdb2d1b1 2024-02-22 op
36 6241aa26 2022-01-20 op EXTRA_DIST = test-gmparser \
37 6241aa26 2022-01-20 op gm-00 \
38 59b2344e 2022-05-19 op gm-01 \
39 59b2344e 2022-05-19 op gmi-00
40 6241aa26 2022-01-20 op
41 6e377cf3 2022-02-09 op CLEANFILES = serialized.*
42 6241aa26 2022-01-20 op
43 8fbe3fd5 2024-02-17 op TESTS = test-gmparser iritest evtest