Add build scripts
This commit is contained in:
parent
0ba206e28f
commit
8dc280e22b
9
compile
Normal file
9
compile
Normal file
@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
CC=clang
|
||||
CFLAGS="-g"
|
||||
LIBS="-lm"
|
||||
|
||||
$CC $CFLAGS -I01_no_metaprogramming ./01_no_metaprogramming/*.c $LIBS -o 01_vec_no_metaprogramming
|
||||
$CC $CFLAGS -I02_macros ./02_macros/*.c $LIBS -o 02_vec_macros
|
||||
$CC $CFLAGS -I03_xmacros ./03_xmacros/*.c $LIBS -o 03_vec_xmacros
|
Loading…
Reference in New Issue
Block a user