Simplified the compilation.
authorFrancois Fleuret <francois@fleuret.org>
Wed, 14 Jun 2017 21:05:00 +0000 (23:05 +0200)
committerFrancois Fleuret <francois@fleuret.org>
Wed, 14 Jun 2017 21:05:00 +0000 (23:05 +0200)
Makefile
README.md

index 7629f3d..7dd3945 100644 (file)
--- 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
index 65c70a2..450ccd2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -26,7 +26,6 @@ Executing
 
 ```
 make -j -k
-./build.py
 ./test-svrt.py
 ```