aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 76f05bd..3e0b72e 100644
--- a/Makefile
+++ b/Makefile
@@ -6,17 +6,17 @@ LDFLAGS = -ltls
all: gmid TAGS README.md
-gmid: gmid.o uri.o utf8.o
- ${CC} gmid.o uri.o utf8.o -o gmid ${LDFLAGS}
+gmid: gmid.o iri.o utf8.o
+ ${CC} gmid.o iri.o utf8.o -o gmid ${LDFLAGS}
-TAGS: gmid.c uri.c utf8.c
- -etags gmid.c uri.c utf8.c || true
+TAGS: gmid.c iri.c utf8.c
+ -etags gmid.c iri.c utf8.c || true
clean:
- rm -f *.o gmid
+ rm -f *.o gmid iri_test
-uri_test: uri_test.o uri.o utf8.o
- ${CC} uri_test.o uri.o utf8.o -o uri_test ${LDFLAGS}
+iri_test: iri_test.o iri.o utf8.o
+ ${CC} iri_test.o iri.o utf8.o -o iri_test ${LDFLAGS}
-test: uri_test
- ./uri_test
+test: iri_test
+ ./iri_test