aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 3e0b72e31bb3c1c16b34e6062dbc4b93db793e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
CC =		cc
CFLAGS =	-Wall -Wextra -g
LDFLAGS =	-ltls

.PHONY: all clean test

all: gmid TAGS README.md

gmid: gmid.o iri.o utf8.o
	${CC} gmid.o iri.o utf8.o -o gmid ${LDFLAGS}

TAGS: gmid.c iri.c utf8.c
	-etags gmid.c iri.c utf8.c || true

clean:
	rm -f *.o gmid iri_test

iri_test: iri_test.o iri.o utf8.o
	${CC} iri_test.o iri.o utf8.o -o iri_test ${LDFLAGS}

test: iri_test
	./iri_test