]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/shell/Makefile
Packages: Simplified definition of install targets.
[libucw.git] / ucw / shell / Makefile
index f9f6e076b15e6102513a2ac1e583b8fedf44f907..0b27d08f0aca1e6906f6f1a554ba24e10eb9992e 100644 (file)
@@ -1,12 +1,20 @@
 # Support routines for shell scripts
 
 DIRS+=ucw/shell
 # Support routines for shell scripts
 
 DIRS+=ucw/shell
-PROGS+=$(o)/ucw/shell/config $(o)/ucw/shell/logger
+UCW_SHELL_PROGS=$(addprefix $(o)/ucw/shell/ucw-,config logger logoutput)
+PROGS+=$(UCW_SHELL_PROGS)
 DATAFILES+=$(o)/ucw/shell/libucw.sh
 
 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/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)
 
 
 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_UTILS_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