diff --git a/Makefile b/Makefile index 954a5b3..e6d8a89 100644 --- a/Makefile +++ b/Makefile @@ -43,6 +43,7 @@ install: all install-lib install-lib: liblsmash.pc lib install -d $(DESTDIR)$(includedir) install -m 644 $(SRCDIR)/lsmash.h $(DESTDIR)$(includedir) + install -m 644 $(SRCDIR)/importer.h $(DESTDIR)$(includedir)/lsmash_importer.h install -d $(DESTDIR)$(libdir)/pkgconfig install -m 644 liblsmash.pc $(DESTDIR)$(libdir)/pkgconfig ifneq ($(STATICLIB),) @@ -60,7 +61,7 @@ endif #All objects should be deleted regardless of configure when uninstall/clean/distclean. uninstall: - $(RM) $(DESTDIR)$(includedir)/lsmash.h + $(RM) $(addprefix $(DESTDIR)$(includedir)/, lsmash.h, lsmash_importer.h) $(RM) $(addprefix $(DESTDIR)$(libdir)/, liblsmash.a liblsmash.dll.a liblsmash.so liblsmash.dylib pkgconfig/liblsmash.pc) $(RM) $(addprefix $(DESTDIR)$(bindir)/, $(TOOLS_ALL) $(TOOLS_ALL:%=%.exe) liblsmash.dll cyglsmash.dll) --