summaryrefslogtreecommitdiff
path: root/io/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'io/Makefile')
-rw-r--r--io/Makefile42
1 files changed, 0 insertions, 42 deletions
diff --git a/io/Makefile b/io/Makefile
deleted file mode 100644
index e609b7f..0000000
--- a/io/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-CC := $(CROSS_COMPILE)gcc
-CXX := $(CROSS_COMPILE)g++
-LD := $(CROSS_COMPILE)g++
-
-DISTRIO_COMMON := ../common
-
-CFLAGS += -fPIC -I$(DISTRIO_COMMON)
-CXXFLAGS += $(CFLAGS)
-
-TAO_IDL := tao_idl
-
-DESTDIR := /usr
-
-COMPONENT = distrio_io
-LIB = lib$(COMPONENT).so
-OBJ = $(COMPONENT)C.o $(COMPONENT).o $(COMPONENT)S.o
-
-IDL_CLEANFILES = $(COMPONENT)C.cpp $(COMPONENT)C.inl $(COMPONENT)I.h \
- $(COMPONENT)S.h $(COMPONENT)C.h $(COMPONENT)S.cpp
-
-all: $(OBJ)
- $(LD) -shared -o $(LIB) $(OBJ)
-
-.PHONY: idl
-idl:
- $(TAO_IDL) -GI -I../interfaces ../interfaces/$(COMPONENT).idl
- rm -f $(COMPONENT)I.cpp
-
-.PHONY: idl_clean
-idl_clean:
- rm -f $(IDL_CLEANFILES)
-
-.PHONY: clean
-clean: idl_clean
- rm -f *.o
- rm -f $(LIB)
-
-install: all
- cp -a $(LIB) $(DESTDIR)/lib
-
-uninstall:
- rm -f $(DESTDIR)/lib/$(LIB)