Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.aix/library/Makefile')
-rw-r--r--core/org.eclipse.cdt.core.aix/library/Makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/core/org.eclipse.cdt.core.aix/library/Makefile b/core/org.eclipse.cdt.core.aix/library/Makefile
deleted file mode 100644
index cd384722c65..00000000000
--- a/core/org.eclipse.cdt.core.aix/library/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-# makefile for libspawner.so
-
-#set JDK_INCLUDES
-JDK_INCLUDES=/usr/java131/include
-
-CC=xlc
-CFLAGS = -I. -I$(JDK_INCLUDES)
-#CFLAGS +=-fpic -D_REENTRANT
-
-LIB_NAME_SPAWNER = libspawner.so
-LIB_NAME_FULL_SPAWNER = ../os/aix/ppc/libspawner.so
-OBJS_SPAWNER=spawner.o io.o exec_unix.o pfind.o
-
-LIB_NAME_PTY = libpty.so
-LIB_NAME_FULL_PTY = ../os/aix/ppc/libpty.so
-OBJS_PTY=openpty.o pty.o ptyio.o
-
-all: $(LIB_NAME_FULL_SPAWNER) $(LIB_NAME_FULL_PTY)
-
-$(LIB_NAME_FULL_SPAWNER): $(OBJS_SPAWNER)
- mkdir -p ../os/aix/ppc
- $(CC) -G -o $(LIB_NAME_FULL_SPAWNER) $(OBJS_SPAWNER) -lc
-
-$(LIB_NAME_FULL_PTY): $(OBJS_PTY)
- $(CC) -G -o $(LIB_NAME_FULL_PTY) $(OBJS_PTY)
-
-clean :
- $(RM) $(OBJS_SPAWNER) $(LIB_NAME_FULL_SPAWNER)
- $(RM) $(OBJS_PTY) $(LIB_NAME_FULL_PTY)

Back to the top