Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.linux/library/Makefile')
-rw-r--r--core/org.eclipse.cdt.core.linux/library/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core.linux/library/Makefile b/core/org.eclipse.cdt.core.linux/library/Makefile
new file mode 100644
index 00000000000..ed47c386f71
--- /dev/null
+++ b/core/org.eclipse.cdt.core.linux/library/Makefile
@@ -0,0 +1,12 @@
+# makefile for libspawner.so
+
+LIB_NAME = libspawner.so
+LIB_NAME_FULL = libspawner.so.1
+OBJS=spawner.o io.o exec_unix.o
+CCFLAGS+=-fpic -D_REENTRANT -I$(JDK_INCLUDES)
+
+spawner : $(OBJS)
+ gcc -g -shared -Wl,-soname,$(LIB_NAME) -o $(LIB_NAME_FULL) $(OBJS) -lc
+
+clean :
+ rm $(OBJS)

Back to the top