diff options
author | Denis Ovsienko <denis@ovsienko.info> | 2023-02-18 00:30:30 +0000 |
---|---|---|
committer | Denis Ovsienko <denis@ovsienko.info> | 2023-02-18 00:44:30 +0000 |
commit | 3d4434b380d6be3d5645a1005cab10444faa8913 (patch) | |
tree | a479ed566efcbe0abe81a4154528b6a01b98e1be /Makefile.in | |
parent | b356d209e66c53b536dd508174b5c4cb7e3e5169 (diff) |
Clean/ignore shared libraries other than .so. [skip ci]
On AIX one of the files "make all" produces is libpcap.shareda, which
then "git status" displays, but "make clean" does not remove. Make this
the opposite way around.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 4df484b0..f236c919 100644 --- a/Makefile.in +++ b/Makefile.in @@ -159,7 +159,7 @@ TAGFILES = \ CLEANFILES = $(OBJ) libpcap.a libpcap.so.`cat $(srcdir)/VERSION` \ $(PROG)-`cat $(srcdir)/VERSION`.tar.gz $(GENERATED_C_SRC) $(GENHDR) \ - lex.yy.c pcap-config libpcap.pc + lex.yy.c pcap-config libpcap.pc libpcap.$(DYEXT) MAN1 = pcap-config.1 |