Blob


1 CC = cc
2 CFLAGS = -Wall -Wextra -g
3 LDFLAGS = -ltls
5 .PHONY: all clean test
7 all: gmid TAGS README.md
9 gmid: gmid.o uri.o utf8.o
10 ${CC} gmid.o uri.o utf8.o -o gmid ${LDFLAGS}
12 TAGS: gmid.c uri.c utf8.c
13 -etags gmid.c uri.c utf8.c || true
15 README.md: gmid.1
16 mandoc -Tmarkdown gmid.1 | sed -e '1d' -e '$$d' > README.md
18 clean:
19 rm -f *.o gmid
21 uri_test: uri_test.o uri.o utf8.o
22 ${CC} uri_test.o uri.o utf8.o -o uri_test ${LDFLAGS}
24 test: uri_test
25 ./uri_test