diff --git a/plugins/Makefile b/plugins/Makefile index 059cba1..f4da2a8 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -18,14 +18,14 @@ all: $(PLUGINS) %.so: %.c $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ $(LDADD) -LIBDIR ?= $(DESTDIR)$(prefix)/lib/pptpd +LIBDIR ?= $(prefix)/lib/pptpd install: $(PLUGINS) - $(INSTALL) -d $(LIBDIR) - $(INSTALL) $? $(LIBDIR) + $(INSTALL) -d $(DESTDIR)$(LIBDIR) + $(INSTALL) $? $(DESTDIR)$(LIBDIR) uninstall: - rm -f $(LIBDIR)$(PLUGINS) + rm -f $(DESTDIR)$(LIBDIR)$(PLUGINS) clean: rm -f *.o *.so *.a