Author: Armin Rigo <ar...@tunes.org>
Branch: c7-refactor
Changeset: r773:5f576a000c84
Date: 2014-02-19 07:18 +0100
http://bitbucket.org/pypy/stmgc/changeset/5f576a000c84/

Log:    Move the demo2.c in the new "demo" subdirectory. It works :-)

diff --git a/c7/Makefile b/c7/demo/Makefile
rename from c7/Makefile
rename to c7/demo/Makefile
--- a/c7/Makefile
+++ b/c7/demo/Makefile
@@ -14,14 +14,14 @@
        rm -f $(BUILD_EXE) $(DEBUG_EXE) $(RELEASE_EXE)
 
 
-H_FILES = stmgc.h stm/*.h
-C_FILES = stmgc.c stm/*.c
+H_FILES = ../stmgc.h ../stm/*.h
+C_FILES = ../stmgc.c ../stm/*.c
 
 
 # note that 'build' is optimized but still contains all asserts
 debug-%: %.c ${H_FILES} ${C_FILES}
-       clang -pthread  -g  $< -o debug-$* -Wall -Werror  stmgc.c
+       clang -I.. -pthread  -g  $< -o debug-$* -Wall -Werror  ../stmgc.c
 build-%: %.c ${H_FILES} ${C_FILES}
-       clang -pthread  -g -O1  $< -o build-$* -Wall  stmgc.c
+       clang -I.. -pthread  -g -O1  $< -o build-$* -Wall  ../stmgc.c
 release-%: %.c ${H_FILES} ${C_FILES}
-       clang -pthread  -g -DNDEBUG -O2 $< -o release-$* -Wall  stmgc.c
+       clang -I.. -pthread  -g -DNDEBUG -O2 $< -o release-$* -Wall  ../stmgc.c
diff --git a/c7/demo2.c b/c7/demo/demo2.c
rename from c7/demo2.c
rename to c7/demo/demo2.c
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to