summaryrefslogtreecommitdiff
path: root/ed2k/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ed2k/Makefile')
-rw-r--r--ed2k/Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/ed2k/Makefile b/ed2k/Makefile
deleted file mode 100644
index 07d23df..0000000
--- a/ed2k/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-CC=gcc
-CFLAGS=
-CPP=g++
-CPPFLAGS=
-LD=gcc
-LDFLAGS=-shared
-
-OBJECTS=ed2k_wrapper.o ed2k.o
-TARGET=_ed2k.so
-INCLUDE=-I /usr/include/python2.4/
-LIB=-l boost_python -l ssl
-
-all: $(TARGET)
-
-clean:
- -rm $(TARGET) $(OBJECTS)
-
-# M�-regel
-$(TARGET): $(OBJECTS) Makefile
- $(LD) $(LDFLAGS) -o $(TARGET) $(OBJECTS) $(LIB)
-
-# Pseudoregler
-%.o: %.c Makefile
- $(CC) $(CFLAGS) -o $@ -c $< $(INCLUDE)
-
-%.o: %.cpp Makefile
- $(CPP) $(CPPFLAGS) -o $@ -c $< $(INCLUDE) \ No newline at end of file