gmid/Makefile

55 lines
1.0 KiB
Makefile
Raw Normal View History

2020-10-02 19:39:00 +02:00
CC = cc
CFLAGS = -Wall -Wextra -g
LDFLAGS = -ltls
LEX = lex
YACC = yacc
2020-10-02 19:39:00 +02:00
PREFIX = /usr/local
# /usr/local/lib on FreeBSD
LIBDIR = /usr/lib/
.PHONY: all static clean test install
2020-10-02 19:39:00 +02:00
all: gmid TAGS
2020-10-02 19:39:00 +02:00
lex.yy.c: lex.l y.tab.c
${LEX} lex.l
y.tab.c: parse.y
${YACC} -b y -d parse.y
SRCS = gmid.c iri.c utf8.c ex.c server.c sandbox.c mime.c
OBJS = ${SRCS:.c=.o} lex.yy.o y.tab.o
2021-01-15 15:03:45 +01:00
gmid: ${OBJS}
${CC} ${OBJS} -o gmid ${LDFLAGS}
2020-10-02 19:39:00 +02:00
static: ${OBJS}
${CC} -static ${OBJS} \
${LIBDIR}/libcrypto.a ${LIBDIR}/libtls.a ${LIBDIR}/libssl.a \
-o gmid
strip gmid
TAGS: ${SRCS}
-etags ${SRCS} || true
2020-10-02 19:39:00 +02:00
clean:
rm -f *.o lex.yy.c y.tab.c y.tab.h y.output gmid iri_test
2021-01-11 14:08:00 +01:00
iri_test: iri_test.o iri.o utf8.o
${CC} iri_test.o iri.o utf8.o -o iri_test ${LDFLAGS}
2021-01-17 12:34:06 +01:00
test: gmid iri_test
@echo "IRI tests"
@echo "=============================="
2021-01-11 14:08:00 +01:00
./iri_test
2021-01-17 12:34:06 +01:00
@echo
@echo "server tests"
@echo "=============================="
cd test && ./test.sh
install: gmid
install -o root -g wheel -m 0755 gmid ${PREFIX}/bin/
install -o root -g wheel -m 0644 gmid.1 ${PREFIX}/man/man1