0x1eef
f6e29e4756
This change introduces `isinetaddr6`, a function that validates IPv6 addresses. The interface is identical to isinetaddr, where 0 is returned for an invalid address and 1 is returned for a valid address.
26 lines
688 B
Makefile
26 lines
688 B
Makefile
SRCDIR = src
|
|
SRCFILES = $(SRCDIR)/isinetaddr.c $(SRCDIR)/iscidraddr.c $(SRCDIR)/isinetaddr6.c
|
|
INCDIR = include
|
|
TESTDIR = test
|
|
|
|
CC = cc
|
|
CFLAGS = -fstack-protector-all -I$(INCDIR) -Wall -Wextra -pedantic
|
|
|
|
test:
|
|
@make test4
|
|
@make test6
|
|
|
|
test4:
|
|
@$(CC) $(CFLAGS) $(SRCFILES) $(TESTDIR)/isinetaddr_test.c -o $(TESTDIR)/isinetaddr
|
|
@echo -n test/isinetaddr: ''
|
|
@$(TESTDIR)/isinetaddr
|
|
@$(CC) $(CFLAGS) $(SRCFILES) $(TESTDIR)/iscidraddr_test.c -o $(TESTDIR)/iscidraddr
|
|
@echo -n test/iscidraddr: ''
|
|
@$(TESTDIR)/iscidraddr
|
|
|
|
test6:
|
|
@$(CC) $(CFLAGS) $(SRCFILES) $(TESTDIR)/isinetaddr6_test.c -o $(TESTDIR)/isinetaddr6
|
|
@echo -n test/isinetaddr6: ''
|
|
@$(TESTDIR)/isinetaddr6
|
|
|
|
.PHONY: test
|