git » libfilo » commit 608460d

Remove python from the Makefile.

author Alberto Bertogli
2005-04-15 22:50:15 UTC
committer Alberto Bertogli
2005-04-15 22:50:15 UTC
parent 4652485cf7cea263dc08172810f8c3d5a7f069f3

Remove python from the Makefile.

Makefile +0 -7

diff --git a/Makefile b/Makefile
index 130994b..2fd6e08 100644
--- a/Makefile
+++ b/Makefile
@@ -39,16 +39,9 @@ install: all
 .c.o:
 	$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
 
-python:
-	cd python && python setup.py build
-
-python_install:
-	cd python && python setup.py install
-
 clean:
 	rm -f $(OBJS) libfilo.a libfilo.so
 	rm -f *.bb *.bbg *.da *.gcov gmon.out
-	rm -rf python/build
 
 
 .PHONY: default all install python python_install clean