]> git.stg.codes - stg.git/blobdiff - projects/convertor/Makefile
Fixed installation.
[stg.git] / projects / convertor / Makefile
index efacbb64f927c6edf9096ca0654a834b7c63a7c9..04c00cc4935d0f98b03adffbbc0ebb778866a9dd 100644 (file)
@@ -58,6 +58,21 @@ clean:
 distclean: clean
        rm -f ../../Makefile.conf
 
+install: install-bin
+
+install-bin:
+ifeq ($(DEBUG), yes)
+       install -D -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/bin/$(PROG)
+else
+       install -D -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/bin/$(PROG)
+endif
+       $(MAKE) -C $(DIR_PLUGINS) install
+
+uninstall: uninstall-bin
+
+uninstall-bin:
+       rm -f $(PREFIX)/usr/bin/$(PROG)
+
 ifneq ($(MAKECMDGOALS),distclean)
 ifneq ($(MAKECMDGOALS),clean)
 ifneq ($(MAKECMDGOALS),uninstall)