Skip to content

Commit

Permalink
Add missing files to autoconf uninstall target (#956)
Browse files Browse the repository at this point in the history
Removes additional headers and `portaudio-2.0.pc`. Previously only `portaudio.h` was removed.
  • Loading branch information
adsr authored Aug 15, 2024
1 parent 0b9f8b2 commit 09102af
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,13 @@ install: lib/$(PALIB) portaudio-2.0.pc

uninstall:
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(PALIB)
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(includedir)/portaudio.h
for include in $(INCLUDES); do \
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(includedir)/$$include; \
done
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/pkgconfig/portaudio-2.0.pc
$(MAKE) uninstall-recursive


clean:
$(LIBTOOL) --mode=clean rm -f $(LTOBJS) $(LOOPBACK_OBJS) $(ALL_TESTS) lib/$(PALIB)
$(RM) bin-stamp lib-stamp
Expand Down

0 comments on commit 09102af

Please sign in to comment.