-
Notifications
You must be signed in to change notification settings - Fork 191
/
Makefile
81 lines (65 loc) · 2 KB
/
Makefile
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
CLANG ?= clang
CFLAGS ?=
OS ?=
CFLAGS += -Os -g3 -Wall -Wextra -Wno-unused-parameter
ifneq ($(OS),Windows_NT)
# NOTE: clang on windows does not support fPIC
CFLAGS += -fPIC
endif
INCLUDES += -Ibuild/
INSTALL ?= install
PREFIX ?= /usr/local
LIBDIR = $(PREFIX)/lib
INCLUDEDIR = $(PREFIX)/include
all: build/libllhttp.a build/libllhttp.so
clean:
rm -rf release/
rm -rf build/
build/libllhttp.so: build/c/llhttp.o build/native/api.o \
build/native/http.o
$(CLANG) -shared $^ -o $@
build/libllhttp.a: build/c/llhttp.o build/native/api.o \
build/native/http.o
$(AR) rcs $@ build/c/llhttp.o build/native/api.o build/native/http.o
build/c/llhttp.o: build/c/llhttp.c
$(CLANG) $(CFLAGS) $(INCLUDES) -c $< -o $@
build/native/%.o: src/native/%.c build/llhttp.h src/native/api.h \
build/native
$(CLANG) $(CFLAGS) $(INCLUDES) -c $< -o $@
build/llhttp.h: generate
build/c/llhttp.c: generate
build/native:
mkdir -p build/native
release: generate
mkdir -p release/src
mkdir -p release/include
cp -rf build/llhttp.h release/include/
cp -rf build/c/llhttp.c release/src/
cp -rf src/native/*.c release/src/
cp -rf src/llhttp.gyp release/
cp -rf src/common.gypi release/
cp -rf CMakeLists.txt release/
sed -i s/_TAG_/$(TAG)/ release/CMakeLists.txt
cp -rf libllhttp.pc.in release/
cp -rf README.md release/
cp -rf LICENSE-MIT release/
postversion: release
git fetch origin
git push
git checkout release --
cp -rf release/* ./
rm -rf release
git add include src *.gyp *.gypi CMakeLists.txt README.md LICENSE-MIT libllhttp.pc.in
git commit -a -m "release: $(TAG)"
git tag "release/v$(TAG)"
git push && git push --tags
git checkout main
generate:
npx ts-node bin/generate.ts
install: build/libllhttp.a build/libllhttp.so
$(INSTALL) -d $(DESTDIR)$(INCLUDEDIR)
$(INSTALL) -d $(DESTDIR)$(LIBDIR)
$(INSTALL) -C build/llhttp.h $(DESTDIR)$(INCLUDEDIR)/llhttp.h
$(INSTALL) -C build/libllhttp.a $(DESTDIR)$(LIBDIR)/libllhttp.a
$(INSTALL) build/libllhttp.so $(DESTDIR)$(LIBDIR)/libllhttp.so
.PHONY: all generate clean release