Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'features/org.eclipse.equinox.executable.feature/library/gtk/makefile')
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/gtk/makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/gtk/makefile b/features/org.eclipse.equinox.executable.feature/library/gtk/makefile
new file mode 100644
index 000000000..9cd1a6b8b
--- /dev/null
+++ b/features/org.eclipse.equinox.executable.feature/library/gtk/makefile
@@ -0,0 +1,15 @@
+all:
+ ./build.sh
+
+clean:
+ ./build.sh clean
+
+# For devs:
+# Convienience target to move the launcher and the relevant *.so into your development eclipse folder for testing/verification.
+# Typically, you can download the latest integration build from here: http://download.eclipse.org/eclipse/downloads/, and use it as your dev eclipse.
+devinstall:
+ # You should define "DEV_ECLIPSE" to be the directory of your testing eclipse, containing the 'eclipse' executable.
+ # I.e the output of 'pwd' (Note: without trailing forward slash).
+ # export DEV_ECLIPSE="/home/YOUR_USER/Downloads/eclipse-SDK-I20180115-2000-linux-gtk-x86_64/eclipse"
+ cp eclipse ${DEV_ECLIPSE}/
+ cp eclipse_*.so ${DEV_ECLIPSE}/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_*/

Back to the top