CXXASMFLAGS = -m64 -mllvm --x86-asm-syntax=intel -S -fomit-frame-pointer main: @echo You should read the readme.txt file! compile: gcc -o test_abs_c test_abs_c.c g++ -o test_abs test_abs.cpp g++ -o test_fib test_fib.cpp g++ -o test_max test_max.cpp g++ -o test_string_compare test_string_compare.cpp asm: clang $(CXXASMFLAGS) test_abs_c.c -o test_abs_c.s clang++ -m64 -S -fomit-frame-pointer test_abs.cpp -o test_abs-non-intel.s clang++ $(CXXASMFLAGS) test_abs.cpp -o test_abs.s clang++ $(CXXASMFLAGS) test_abs_int.cpp -o test_abs_int.s clang++ $(CXXASMFLAGS) -O2 test_fib.cpp -o test_fib.s clang++ $(CXXASMFLAGS) -O2 test_string_compare.cpp -o test_string_compare.s clang++ $(CXXASMFLAGS) test_max.cpp -o test_max.s clang++ $(CXXASMFLAGS) -O2 test_max.cpp -o test_max-O2.s grep -v extern test_max.cpp > foo.cpp clang++ $(CXXASMFLAGS) foo.cpp -o test_max-noextern.s /bin/rm -rf foo.cpp clean: /bin/rm -f test_abs_c test_abs_c.exe test_fib test_fib.exe test_max \ test_max.exe test_string_compare test_string_compare.exe \ test_abs test_abs.exe asmclean: /bin/rm -f *.s source-highlight: source-highlight -d *.s *.c *.cpp