From d6dbae8f0d2fa309e169c649a3c1a0d5335b63a1 Mon Sep 17 00:00:00 2001 From: Kevron Rees Date: Mon, 22 Jul 2013 15:33:52 -0700 Subject: [PATCH] fixed makefile --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 20b0c31..b47f54e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJECT = GhostCluster -INSTALL_DIR = ${DESTDIR}/usr/share/$(PROJECT) +INSTALL_DIR = ${DESTDIR}/opt/usr/apps/.preinstallWidgets DESKTOP_DIR = ${DESTDIR}/usr/share/applications ICON_DIR = ${DESTDIR}/usr/share/pixmaps VERSION = $(shell grep version manifest.json | cut -f4 -d"\"") @@ -18,6 +18,11 @@ all: widget: zip -r $(PKG_NAME).wgt $(FILES) assets +install_widget: + @echo "installing wgt widget file" + mkdir -p $(INSTALL_DIR)/ + cp $(PKG_NAME).wgt $(INSTALL_DIR)/ + install: @echo "installing wgt widget file" mkdir -p $(INSTALL_DIR)/ -- 2.7.4