diff -r b7d1317b138e -r fae240d633fc Makefile --- a/Makefile Tue Oct 17 15:15:54 2017 +0200 +++ b/Makefile Tue Oct 17 16:15:41 2017 +0200 @@ -45,10 +45,10 @@ all: ucx test ucx: FORCE - cd ucx; $(MAKE) CONF=$(CONF) + cd src; $(MAKE) CONF=$(CONF) ucx-debug: FORCE - cd ucx; $(MAKE) CONF=$(CONF) debug + cd src; $(MAKE) CONF=$(CONF) debug test: ucx FORCE cd test; $(MAKE) CONF=$(CONF) @@ -67,7 +67,7 @@ install: ucx $(DESTDIR)$(PREFIX)/lib $(DESTDIR)$(PREFIX)/include/ucx cp ./build/release/libucx$(LIB_EXT) $(DESTDIR)$(PREFIX)/lib && \ cp ./build/release/libucx$(SO_EXT) $(DESTDIR)$(PREFIX)/lib && \ - cp ./ucx/*.h $(DESTDIR)$(PREFIX)/include/ucx + cp ./src/ucx/*.h $(DESTDIR)$(PREFIX)/include/ucx uninstall: $(RM) $(RMFLAGS) $(DESTDIR)$(PREFIX)/include/ucx &&\