Skip to content

Commit a0943ee

Browse files
author
benoit.condaminet
committed
chore: Add raw lib headers dump to easily check method useful comments
1 parent 891a3cf commit a0943ee

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/.phpunit.cache
22
/tests/resources/generated
3-
/vendor/
3+
/vendor/
4+
/lib-headers/

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
.PHONY: dump-header
2-
dump-header:
3-
docker-compose up -d --build && docker compose cp php-pdfium:/usr/lib-pdfium/include/pdfium.h ./include/pdfium.h
2+
dump-header: build
3+
docker compose cp php-pdfium:/usr/lib-pdfium/include/pdfium.h ./include/pdfium.h
4+
5+
.PHONY: dump-lib-headers
6+
dump-lib-headers: build
7+
mkdir -p ./lib-headers/pdfium && docker compose cp php-pdfium:/usr/lib-pdfium/include ./lib-headers/pdfium/.
48

59
.PHONY: test
610
test:

0 commit comments

Comments
 (0)