Makefile: add proper dependency info for install targets

pull/35/merge
rofl0r 2014-02-02 09:46:57 +01:00
parent e34d417b55
commit 3dd2fa7782
1 changed files with 2 additions and 2 deletions

View File

@ -48,11 +48,11 @@ CFLAGS_MAIN=-DLIB_DIR=\"$(libdir)\" -DSYSCONFDIR=\"$(sysconfdir)\" -DDLL_NAME=\"
all: $(ALL_LIBS) $(ALL_TOOLS)
install-config:
install-config: src/proxychains.conf
install -d $(DESTDIR)$(sysconfdir)
install $(INSTALL_FLAGS) 644 src/proxychains.conf $(DESTDIR)$(sysconfdir)/
install:
install: $(ALL_LIBS) $(ALL_TOOLS)
install -d $(DESTDIR)$(bindir)/ $(DESTDIR)$(libdir)/
install $(INSTALL_FLAGS) 755 $(ALL_TOOLS) $(DESTDIR)$(bindir)/
install $(INSTALL_FLAGS) 644 $(ALL_LIBS) $(DESTDIR)$(libdir)/