From: Francois Fleuret Date: Wed, 14 Jun 2017 21:05:00 +0000 (+0200) Subject: Simplified the compilation. X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=pysvrt.git;a=commitdiff_plain;h=3f98a24d12e9f0e062f195d92606a5ffbe651ff8 Simplified the compilation. --- diff --git a/Makefile b/Makefile index 7629f3d..7dd3945 100644 --- a/Makefile +++ b/Makefile @@ -26,11 +26,14 @@ else CXXFLAGS = -fPIC -Wall -g -O3 endif -all: libsvrt.so TAGS +all: svrt TAGS TAGS: *.cc *.h etags *.cc *.h +svrt: libsvrt.so + ./build.py + libsvrt.so: \ misc.o random.o \ svrt_generator.o \ @@ -42,6 +45,6 @@ Makefile.depend: *.h *.cc Makefile $(CC) $(CXXFLAGS) -M *.cc > Makefile.depend clean: - \rm -f svrt *.o *.so Makefile.depend + \rm -rf svrt *.o *.so Makefile.depend -include Makefile.depend diff --git a/README.md b/README.md index 65c70a2..450ccd2 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,6 @@ Executing ``` make -j -k -./build.py ./test-svrt.py ```