summaryrefslogtreecommitdiff
path: root/src/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugin')
-rw-r--r--src/plugin/Makefile8
-rw-r--r--src/plugin/src/Makefile40
2 files changed, 0 insertions, 48 deletions
diff --git a/src/plugin/Makefile b/src/plugin/Makefile
deleted file mode 100644
index 93781cd..0000000
--- a/src/plugin/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-all:
- cd src && $(MAKE)
- cp ./lib/plugctrl.a ../lib
-clean:
- cd src && $(MAKE) clean
-opt:
- $(MAKE) all
-
diff --git a/src/plugin/src/Makefile b/src/plugin/src/Makefile
deleted file mode 100644
index 39d64f7..0000000
--- a/src/plugin/src/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-
-CC = gcc
-CFLAGS += -g -Wall -fPIC
-CFLAGS += $(OPTFLAGS)
-OBJECTS = plugin_proc.o plugin.o plugin_platform.o plugin_protocol.o plugin_business.o
-TARGET = plugctrl.a
-
-INCS = -I../inc
-INCS += -I../../../include/
-INCS += -I../../../include/public
-INCS += -I../../../include/private
-INCS += -I../../../include/support
-INCS +=-I/opt/MESA/include/MESA
-LIB =
-
-LIBPATH += ../lib
-
-.cpp.o:
- $(CC) -c -o $@ $(CFLAGS) $(INCS) $<
-
-.c.o:
- $(CC) -c -o $@ $(CFLAGS) $(INCS) $<
-
-.PHONY: all clean
-all:$(SUPPORT) $(TARGET)
-$(TARGET):$(OBJECTS)
-#$(TARGET):$(OBJECTS) $(LIB)
- ar -rs $(TARGET) $^
- cp $(TARGET) $(LIBPATH)
-
-plugin_proc.o:plugin_proc.c
-plugin.o:plugin.c
-plugin_platform.o:plugin_platform.c
-plugin_protocol.o:plugin_protocol.c
-plugin_business.o:plugin_business.c
-
-
-clean:
- rm -f $(TARGET) $(OBJECTS) *.a
-