summary refs log tree commit diff
path: root/Makefile
blob: fbe0a268c58664c8f245136de94a53c848dc1628 (plain) (blame)
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
ALL=hittpd
OBJ=hittpd.o http-parser/http_parser.o

CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings
CPPFLAGS=-DUSE_SENDFILE -Ihttp-parser

DESTDIR=
PREFIX=/usr/local
BINDIR=$(PREFIX)/bin
MANDIR=$(PREFIX)/share/man

hittpd: $(OBJ)

all: $(ALL)

clean: FRC
	rm -f $(ALL) $(OBJ)

install: FRC all
	mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man8
	install -m0755 $(ALL) $(DESTDIR)$(BINDIR)
	install -m0644 $(ALL:=.1) $(DESTDIR)$(MANDIR)/man8

README: hittpd.8
	mandoc -Tutf8 $< | col -bx >$@

FRC: