modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / balancedTree / Makefile
blob7f0b34155bfeb67297cfbc9ab5fcd2f84ae3a1bf
1 ARG = -Wall -O3 -pipe -march=core2 -mtune=generic -I. ./libpspp/bt.c
3 all: bin test
4 bin:
5 gcc $(ARG) bt-test.c -o bt-test
6 strip bt-test
7 gcc $(ARG) bt-tmp.c -o btmp
8 @echo "[!]Make done."
9 test:
10 @echo "[!]Begin test ..."
11 ./bt-test insert-any-remove-any
12 ./bt-test insert-any-remove-same
13 ./bt-test insert-any-remove-reverse
14 ./bt-test random-sequence
15 ./bt-test insert-ordered
16 ./bt-test find-ge-le
17 ./bt-test moved
18 ./bt-test changed
21 gcc $(ARG) bt-tmp.c -o btmp