blob: 081565cb4bcbf3ae1b9f066ba2aefd6c5c59d5fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# tests to run as a port of the regression suite. Leave empty to run
# all.
TESTS=
.PHONY: all static clean cleanall regress install
all: Makefile.local gmid gg TAGS compile_flags.txt
Makefile.local: configure
./configure
include Makefile.local
y.tab.c: parse.y
${YACC} -b y parse.y
SRCS = gmid.c iri.c utf8.c ex.c server.c sandbox.c mime.c puny.c \
utils.c log.c dirs.c fcgi.c proxy.c
OBJS = ${SRCS:.c=.o} y.tab.o ${COMPAT}
gmid: ${OBJS}
${CC} ${OBJS} -o gmid ${LDFLAGS}
gg: gg.o iri.o utf8.o ${COMPAT}
${CC} gg.o iri.o utf8.o ${COMPAT} -o $@ ${LDFLAGS}
static: ${OBJS}
${CC} ${OBJS} -o gmid ${LDFLAGS} ${STATIC}
TAGS: ${SRCS}
@(etags ${SRCS} || true) 2>/dev/null
clean:
rm -f *.o compat/*.o y.tab.c y.tab.h y.output gmid
rm -f compile_flags.txt
cleanall: clean
${MAKE} -C regress clean
regress: gmid
${MAKE} 'TESTS=${TESTS}' -C regress all
install: gmid
mkdir -p ${DESTDIR}${BINDIR}
mkdir -p ${DESTDIR}${MANDIR}/man1
${INSTALL_PROGRAM} gmid ${DESTDIR}${BINDIR}
${INSTALL_MAN} gmid.1 ${DESTDIR}${MANDIR}/man1
compile_flags.txt:
printf "%s\n" ${CFLAGS} > compile_flags.txt
# make sure we pass -o to ${CC}. OpenBSD default suffix rule doesn't
.SUFFIXES: .c .o
.c.o:
${CC} ${CFLAGS} -c $< -o $@
|