Skip to content

Commit acca2df

Browse files
authored
Use Makefile.frag and ignore build artefact (#5)
1 parent 4628c05 commit acca2df

File tree

3 files changed

+59
-0
lines changed

3 files changed

+59
-0
lines changed

.gitignore

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Object files
2+
*.o
3+
*.lo
4+
5+
# Libraries
6+
*.lib
7+
*.a
8+
*.la
9+
10+
# Shared objects (inc. Windows DLLs)
11+
*.dll
12+
*.so
13+
*.so.*
14+
*.dylib
15+
16+
# Executables
17+
*.exe
18+
*.out
19+
*.app
20+
21+
# archives
22+
pcap-*.tgz
23+
24+
# autotools
25+
.deps
26+
.libs
27+
config.cache
28+
config.guess
29+
config.h
30+
config.h.in
31+
config.h.in~
32+
config.log
33+
config.nice
34+
config.status
35+
config.sub
36+
configure
37+
configure.in
38+
configure.ac
39+
conftest
40+
conftest.c
41+
Makefile
42+
Makefile.fragments
43+
Makefile.global
44+
Makefile.objects
45+
acinclude.m4
46+
aclocal.m4
47+
autom4te.cache
48+
build
49+
install-sh
50+
libtool
51+
ltmain.sh
52+
ltmain.sh.backup
53+
missing
54+
mkinstalldirs
55+
modules
56+
run-tests.php
57+
run-tests.log
58+
tmp-php.ini

Makefile Makefile.frag

File renamed without changes.

config.m4

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ if test "$PHP_PCAP" != "no"; then
5050
])
5151
fi
5252

53+
PHP_ADD_MAKEFILE_FRAGMENT
5354
PHP_SUBST([CFLAGS])
5455
PHP_SUBST(PCAP_SHARED_LIBADD)
5556
fi

0 commit comments

Comments
 (0)