X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fshell%2FMakefile;h=62774c3cdeaf69a83e0b47d70aed03ffd7f0ca48;hb=db2e817025638b9738e5ff8f8f5ccc1fbf68a2f3;hp=62ecb96891900f061d4db540dd0ac514a8f26a34;hpb=ba1c173f544383aa6553a75dee6e6858d8f243a4;p=libucw.git diff --git a/ucw/shell/Makefile b/ucw/shell/Makefile index 62ecb968..62774c3c 100644 --- a/ucw/shell/Makefile +++ b/ucw/shell/Makefile @@ -1,21 +1,20 @@ # Support routines for shell scripts DIRS+=ucw/shell -UCW_SHELL_PROGS=$(addprefix $(o)/ucw/shell/,config logger logoutput) +UCW_SHELL_PROGS=$(addprefix $(o)/ucw/shell/ucw-,config logger logoutput) PROGS+=$(UCW_SHELL_PROGS) DATAFILES+=$(o)/ucw/shell/libucw.sh -$(o)/ucw/shell/config: $(o)/ucw/shell/config.o $(LIBUCW) -$(o)/ucw/shell/logger: $(o)/ucw/shell/logger.o $(LIBUCW) -$(o)/ucw/shell/logoutput: $(o)/ucw/shell/logoutput.o $(LIBUCW) +$(o)/ucw/shell/ucw-config: $(o)/ucw/shell/ucw-config.o $(LIBUCW) +$(o)/ucw/shell/ucw-logger: $(o)/ucw/shell/ucw-logger.o $(LIBUCW) +$(o)/ucw/shell/ucw-logoutput: $(o)/ucw/shell/ucw-logoutput.o $(LIBUCW) TESTS+=$(addprefix $(o)/ucw/shell/,config.test) -$(o)/ucw/shell/config.test: $(o)/ucw/shell/config +$(o)/ucw/shell/config.test: $(o)/ucw/shell/ucw-config INSTALL_TARGETS+=install-ucw-shell install-ucw-shell: install -d -m 755 $(DESTDIR)$(INSTALL_BIN_DIR) install -m 755 $(UCW_SHELL_PROGS) $(DESTDIR)$(INSTALL_BIN_DIR) - .PHONY: install-ucw-shell